UNPKG

@openai/agents-core

Version:

The OpenAI Agents SDK is a lightweight yet powerful framework for building multi-agent workflows.

48 lines 1.27 kB
import { BaseMCPServerStdio, BaseMCPServerStreamableHttp, } from "../../mcp.js"; export class MCPServerStdio extends BaseMCPServerStdio { constructor(params) { super(params); } get name() { return 'MCPServerStdio'; } connect() { throw new Error('Method not implemented.'); } close() { throw new Error('Method not implemented.'); } listTools() { throw new Error('Method not implemented.'); } callTool(_toolName, _args) { throw new Error('Method not implemented.'); } invalidateToolsCache() { throw new Error('Method not implemented.'); } } export class MCPServerStreamableHttp extends BaseMCPServerStreamableHttp { constructor(params) { super(params); } get name() { return 'MCPServerStdio'; } connect() { throw new Error('Method not implemented.'); } close() { throw new Error('Method not implemented.'); } listTools() { throw new Error('Method not implemented.'); } callTool(_toolName, _args) { throw new Error('Method not implemented.'); } invalidateToolsCache() { throw new Error('Method not implemented.'); } } //# sourceMappingURL=browser.js.map