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