UNPKG

@mondaydotcomorg/atp-mcp-adapter

Version:

MCP compatibility adapter for Agent Tool Protocol

24 lines (21 loc) 365 B
/** * Shared types for MCP Adapter */ export interface MCPTool { name: string; description?: string; inputSchema: { type: string; properties?: Record<string, unknown>; required?: string[]; }; } export interface MCPPrompt { name: string; description?: string; arguments?: Array<{ name: string; description?: string; required?: boolean; }>; }