UNPKG

@l4t/mcp-ai

Version:

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

8 lines (7 loc) 297 B
import { McpAggregatorHttpConfig, ExpressOptions } from '../../common/types.js'; declare const create: (config: McpAggregatorHttpConfig, options?: ExpressOptions) => { start: () => Promise<void>; stop: () => Promise<void>; set: (key: string, value: any) => void; }; export { create };