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.

10 lines (9 loc) 591 B
/** * @fileoverview Core logic invocation for the pubmed_research_agent tool. * This tool generates a structured research plan outline with instructive placeholders, * designed to be completed by a calling LLM (the MCP Client). * @module pubmedResearchAgent/logic */ import { RequestContext } from "../../../utils/index.js"; import { PubMedResearchAgentInput, PubMedResearchPlanGeneratedOutput } from "./logic/index.js"; export declare function pubmedResearchAgentLogic(input: PubMedResearchAgentInput, parentRequestContext: RequestContext): Promise<PubMedResearchPlanGeneratedOutput>;