search

Pack: europepmc · Endpoint: https://gateway.pipeworx.io/europepmc/mcp

Europe PMC search (lucene-style query). Returns metadata for matching articles.

Parameters

NameTypeRequiredDescription
querystringyese.g. “CRISPR OR Cas9”, “AUTH:Doudna AND ABSTRACT:editing”
pagenumberno1-based page (default 1)
pageSizenumberno1-100 (default 25)

Example call

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

Response shape

FieldTypeDescription
hitCountnumberTotal number of matching articles
pageSizenumberResults per page
currentPagenumberCurrent page number
resultListobject
foundbooleanSearch completed successfully
Full JSON Schema
{
  "type": "object",
  "properties": {
    "hitCount": {
      "type": "number",
      "description": "Total number of matching articles"
    },
    "pageSize": {
      "type": "number",
      "description": "Results per page"
    },
    "currentPage": {
      "type": "number",
      "description": "Current page number"
    },
    "resultList": {
      "type": "object",
      "properties": {
        "result": {
          "type": "array",
          "description": "Array of article summaries",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Article ID"
              },
              "source": {
                "type": "string",
                "description": "Source type (MED, PMC, etc.)"
              },
              "pmid": {
                "type": "string",
                "description": "PubMed ID"
              },
              "pmcid": {
                "type": "string",
                "description": "PMC ID"
              },
              "title": {
                "type": "string",
                "description": "Article title"
              },
              "authorString": {
                "type": "string",
                "description": "Author list"
              },
              "abstractText": {
                "type": "string",
                "description": "Abstract text"
              },
              "journalTitle": {
                "type": "string",
                "description": "Journal name"
              },
              "pubYear": {
                "type": "number",
                "description": "Publication year"
              },
              "isOpenAccess": {
                "type": "string",
                "description": "Y/N open access flag"
              },
              "hasTextMinedTerms": {
                "type": "string",
                "description": "Y/N has text-mined terms"
              },
              "citedByCount": {
                "type": "number",
                "description": "Citation count"
              }
            }
          }
        }
      }
    },
    "found": {
      "type": "boolean",
      "description": "Search completed successfully"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "europepmc": {
      "url": "https://gateway.pipeworx.io/europepmc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026