@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.
12 lines (11 loc) • 583 B
TypeScript
/**
* @fileoverview Registers the 'get_pubmed_article_connections' tool with the MCP server.
* This tool finds articles related to a source PMID or retrieves citation formats.
* @module src/mcp-server/tools/getPubMedArticleConnections/registration
*/
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
* Registers the 'get_pubmed_article_connections' tool with the given MCP server instance.
* @param {McpServer} server - The MCP server instance.
*/
export declare function registerGetPubMedArticleConnectionsTool(server: McpServer): Promise<void>;