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 564 B
import type { ServerManager } from '../server_manager.js'; import { z } from 'zod'; import { MCPServerTool } from './base.js'; declare const PresentActiveServerSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare class AcquireActiveMCPServerTool extends MCPServerTool<typeof PresentActiveServerSchema> { name: string; description: string; schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; constructor(manager: ServerManager); _call(): Promise<string>; } export {}; //# sourceMappingURL=acquire_active_mcp_server.d.ts.map