UNPKG

@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

10 lines 580 B
/** * @fileoverview Handles ELink requests and enriches results with ESummary data * for the pubmedArticleConnections tool. * @module src/mcp-server/tools/pubmedArticleConnections/logic/elinkHandler */ import { RequestContext } from "../../../../utils/index.js"; import type { PubMedArticleConnectionsInput } from "./index.js"; import type { ToolOutputData } from "./types.js"; export declare function handleELinkRelationships(input: PubMedArticleConnectionsInput, outputData: ToolOutputData, context: RequestContext): Promise<void>; //# sourceMappingURL=elinkHandler.d.ts.map