UNPKG

@voyager-0x/agent-mcp

Version:

Voyager MCP Agent - A powerful Model Context Protocol agent

15 lines (14 loc) 265 B
export type LLMConfig = { apiKey: string; baseURL: string; model: string; }; export type ToolCall = { tool: string; arguments?: Record<string, any>; moduleId: string; }; export type ResourceCall = { uri: string; moduleId: string; };