UNPKG

mcp-use

Version:

A utility library for integrating Model Context Protocol (MCP) with LangChain, Zod, and related tools. Provides helpers for schema conversion, event streaming, and SDK usage.

13 lines 541 B
import type { ServerManager } from '../server_manager.js'; import { z } from 'zod'; import { MCPServerTool } from './base.js'; declare const EnumerateServersSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare class ListMCPServersTool extends MCPServerTool<typeof EnumerateServersSchema> { name: string; description: string; schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; constructor(manager: ServerManager); _call(): Promise<string>; } export {}; //# sourceMappingURL=list_mcp_servers.d.ts.map