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