import type { IServerManager } from "../types.js"; import { z } from "zod"; import { MCPServerTool } from "./base.js"; declare const EnumerateServersSchema: z.ZodObject<{}, z.core.$strip>; /** Lists configured MCP servers and their cached capability counts. */ export declare class ListMCPServersTool extends MCPServerTool { /** Tool name exposed to the model. */ name: string; /** Tool description exposed to the model. */ description: string; /** Empty input schema. */ schema: z.ZodObject<{}, z.core.$strip>; constructor(manager: IServerManager); /** @returns A formatted list of configured servers and capability counts. */ _call(): Promise; } export {}; //# sourceMappingURL=list_mcp_servers.d.ts.map