feat(mcp): add MCPToolset and MCPToolsetTool TypeScript types

This commit is contained in:
Ishaan Jaffer 2026-03-21 19:00:31 -07:00
parent 261471ff91
commit 3de93154d3

View file

@ -231,6 +231,20 @@ export interface MCPServerProps {
userID: string | null;
}
export interface MCPToolsetTool {
server_id: string;
tool_name: string;
}
export interface MCPToolset {
toolset_id: string;
toolset_name: string;
description?: string;
tools: MCPToolsetTool[];
created_at?: string;
created_by?: string;
}
// Discoverable MCP server from the curated registry
export interface DiscoverableMCPServer {
name: string;