UNPKG

@mondaydotcomorg/atp-mcp-adapter

Version:

MCP compatibility adapter for Agent Tool Protocol

22 lines 458 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; }>; } //# sourceMappingURL=types.d.ts.map