mcp-simple-gateway
Version:
MCP Simple Gateway
8 lines (7 loc) • 307 B
TypeScript
interface CreateProxyServerParams {
configPath: string;
}
export declare const createProxyServer: ({ configPath }: CreateProxyServerParams) => {
listen: (port: number, host: string) => import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>;
};
export {};