@cyanheads/pubmed-mcp-server
Version:
Production-ready PubMed Model Context Protocol (MCP) server that empowers AI agents and research tools with comprehensive access to PubMed's article database. Enables advanced, automated LLM workflows for searching, retrieving, analyzing, and visualizing
12 lines • 611 B
TypeScript
/**
* @fileoverview Registers the '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/pubmedArticleConnections/registration
*/
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
* Registers the 'pubmed_article_connections' tool with the given MCP server instance.
* @param {McpServer} server - The MCP server instance.
*/
export declare function registerPubMedArticleConnectionsTool(server: McpServer): Promise<void>;
//# sourceMappingURL=registration.d.ts.map