refactor(mcpserver): update tool IDs from string UUIDs to integers
Some checks failed
CI / build-and-test (push) Failing after -31m3s

This commit is contained in:
2026-05-03 17:26:41 +02:00
parent a8214aaa8b
commit d6bf0b20d0
3 changed files with 23 additions and 12 deletions

View File

@@ -207,7 +207,10 @@ func streamableTestToolSet() ToolSet {
Backfill: new(tools.BackfillTool),
Reparse: new(tools.ReparseMetadataTool),
RetryMetadata: new(tools.RetryEnrichmentTool),
//Maintenance: new(tools.MaintenanceTool),
Skills: new(tools.SkillsTool),
Skills: new(tools.SkillsTool),
ChatHistory: new(tools.ChatHistoryTool),
Describe: new(tools.DescribeTool),
Learnings: new(tools.LearningsTool),
Plans: new(tools.PlansTool),
}
}