@l4t/mcp-ai
Version:
A set of tools for making integration and aggregation of MCP servers extremely easy.
11 lines (10 loc) • 400 B
TypeScript
import express from 'express';
import { ExpressOptions } from '../../common/types.js';
import { SimpleServerHttpConfig } from '../types.js';
declare const create: (config: SimpleServerHttpConfig, options?: ExpressOptions) => {
getApp: () => Promise<express.Express>;
set: (key: string, value: any) => void;
start: () => Promise<void>;
stop: () => Promise<void>;
};
export { create };