UNPKG

@cyanheads/pubmed-mcp-server

Version:

A Model Context Protocol (MCP) server enabling AI agents to intelligently search, retrieve, and analyze biomedical literature from PubMed via NCBI E-utilities. Built on the mcp-ts-template for robust, production-ready performance.

11 lines (10 loc) 415 B
/** * @fileoverview Registration for the fetch_pubmed_content MCP tool. * @module src/mcp-server/tools/fetchPubMedContent/registration */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Registers the fetch_pubmed_content tool with the MCP server. * @param server - The McpServer instance. */ export declare function registerFetchPubMedContentTool(server: McpServer): Promise<void>;