UNPKG

@agentpaid/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.

14 lines (13 loc) 309 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseAgent = void 0; class BaseAgent { session; /** * @param session MCP session used for tool invocation */ constructor(session) { this.session = session; } } exports.BaseAgent = BaseAgent;