mcp-simple-pubmed

get_paper_fulltext

Get full text of a PubMed article using its ID.

This tool attempts to retrieve the complete text of the paper if available through PubMed Central. If the paper is not available in PMC, it will return a message explaining why and provide information about where the text might be available (e.g., through DOI). Example usage: get_paper_fulltext(pmid="39661433") Returns: - If successful: The complete text of the paper - If not available: A clear message explaining why (e.g., "not in PMC", "requires journal access")

Input Schema

NameRequiredDescriptionDefault
pmidYesPubMed ID of the article

Input Schema (JSON Schema)

{ "properties": { "pmid": { "description": "PubMed ID of the article", "type": "string" } }, "required": [ "pmid" ], "type": "object" }

You must be authenticated.

Other Tools