@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.
10 lines (9 loc) • 550 B
TypeScript
/**
* @fileoverview Handles ELink requests and enriches results with ESummary data
* for the getPubMedArticleConnections tool.
* @module src/mcp-server/tools/getPubMedArticleConnections/logic/elinkHandler
*/
import { RequestContext } from "../../../../utils/index.js";
import type { GetPubMedArticleConnectionsInput } from "./index.js";
import type { ToolOutputData } from "./types.js";
export declare function handleELinkRelationships(input: GetPubMedArticleConnectionsInput, outputData: ToolOutputData, context: RequestContext): Promise<void>;