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.

10 lines (9 loc) 180 B
export class BaseAgent { session; /** * @param session MCP session used for tool invocation */ constructor(session) { this.session = session; } }