diff --git a/internal/daemon/types.go b/internal/daemon/types.go index 3b483c4..e2c561e 100644 --- a/internal/daemon/types.go +++ b/internal/daemon/types.go @@ -83,6 +83,11 @@ type MCPTool struct { InputSchema interface{} `json:"inputSchema"` } +type ToolCall struct { + Tool string `json:"tool"` + Arguments map[string]interface{} `json:"arguments"` +} + type MCPRegisteredPayload struct { Status string `json:"status"` ServerID string `json:"server_id"`