mcp-use
Version:
Opinionated MCP Framework for TypeScript (@modelcontextprotocol/sdk compatible) - Build MCP Agents, Clients and Servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.
13 lines • 502 B
TypeScript
import type { IServerManager } from "../types.js";
import { z } from "zod";
import { MCPServerTool } from "./base.js";
declare const EnumerateServersSchema: z.ZodObject<{}, z.core.$strip>;
export declare class ListMCPServersTool extends MCPServerTool<typeof EnumerateServersSchema> {
name: string;
description: string;
schema: z.ZodObject<{}, z.core.$strip>;
constructor(manager: IServerManager);
_call(): Promise<string>;
}
export {};
//# sourceMappingURL=list_mcp_servers.d.ts.map