UNPKG

@l4t/mcp-ai

Version:

A set of tools for making integration and aggregation of MCP servers extremely easy.

13 lines (12 loc) 389 B
import { McpAggregatorConfig, ExpressOptions } from '../../common/types.js'; declare const create: (config: McpAggregatorConfig, options?: { express: ExpressOptions; }) => { start: () => Promise<void>; stop: () => Promise<void>; } | { start: (port?: number) => Promise<void>; stop: () => Promise<void>; set: (key: string, value: any) => void; }; export { create };