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.

11 lines (10 loc) 636 B
/** * @fileoverview Orchestrates the generation of the research plan outline * by directly mapping detailed client inputs to a structured output format. * Omits sections/steps if no relevant input is provided. * @module pubmedResearchAgent/logic/planOrchestrator */ import { RequestContext } from "../../../../utils/index.js"; import type { PubMedResearchAgentInput } from "./inputSchema.js"; import type { PubMedResearchPlanGeneratedOutput } from "./outputTypes.js"; export declare function generateFullResearchPlanOutline(input: PubMedResearchAgentInput, parentRequestContext: RequestContext): PubMedResearchPlanGeneratedOutput;