UNPKG

@openai/agents-core

Version:

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

71 lines 1.86 kB
import { BaseMCPServerSSE, BaseMCPServerStdio, BaseMCPServerStreamableHttp, } from "../../mcp.mjs"; 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.'); } } export class MCPServerSSE extends BaseMCPServerSSE { constructor(params) { super(params); } get name() { return 'MCPServerSSE'; } 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.mjs.map