get_author

Pack: semantic-scholar · Endpoint: https://gateway.pipeworx.io/semantic-scholar/mcp

Get an academic author profile by Semantic Scholar author ID. Returns name, affiliations, h-index, total citations, paper count, and recent publications. Use search_papers first to find author IDs.

Parameters

NameTypeRequiredDescription
author_idstringyesSemantic Scholar author ID (numeric string)

Example call

Arguments

{
  "author_id": "2190855"
}

curl

curl -X POST https://gateway.pipeworx.io/semantic-scholar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_author","arguments":{"author_id":"2190855"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_author', {
  "author_id": "2190855"
});

Response shape

FieldTypeDescription
author_idstring | nullSemantic Scholar author ID
namestring | nullAuthor name
urlstring | nullURL to author profile
affiliationsarrayAuthor affiliations
homepagestring | nullAuthor homepage URL
paper_countnumber | nullTotal number of papers published
citation_countnumber | nullTotal number of citations
h_indexnumber | nullH-index of the author
papersarrayRecent publications (up to 20)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "author_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "Semantic Scholar author ID"
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Author name"
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to author profile"
    },
    "affiliations": {
      "type": "array",
      "description": "Author affiliations",
      "items": {
        "type": "string"
      }
    },
    "homepage": {
      "type": [
        "string",
        "null"
      ],
      "description": "Author homepage URL"
    },
    "paper_count": {
      "type": [
        "number",
        "null"
      ],
      "description": "Total number of papers published"
    },
    "citation_count": {
      "type": [
        "number",
        "null"
      ],
      "description": "Total number of citations"
    },
    "h_index": {
      "type": [
        "number",
        "null"
      ],
      "description": "H-index of the author"
    },
    "papers": {
      "type": "array",
      "description": "Recent publications (up to 20)",
      "items": {
        "type": "object",
        "properties": {
          "paper_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Paper ID"
          },
          "title": {
            "type": [
              "string",
              "null"
            ],
            "description": "Paper title"
          },
          "year": {
            "type": [
              "number",
              "null"
            ],
            "description": "Publication year"
          },
          "citation_count": {
            "type": [
              "number",
              "null"
            ],
            "description": "Number of citations for this paper"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "semantic-scholar": {
      "url": "https://gateway.pipeworx.io/semantic-scholar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026