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) 394 B
/** * @fileoverview Registration for the pubmed_research_agent tool. * @module pubmedResearchAgent/registration */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Registers the pubmed_research_agent tool with the MCP server. * @param server - The McpServer instance. */ export declare function registerPubMedResearchAgentTool(server: McpServer): Promise<void>;