From 6a08f4bc5a6b3ca8f3577c74777351a6d3c6608e Mon Sep 17 00:00:00 2001 From: Bryan Thompson Date: Fri, 2 Jan 2026 20:20:17 -0600 Subject: [PATCH] feat: Add tool annotations for improved LLM tool understanding (#549) Co-authored-by: triepod-ai <199543909+triepod-ai@users.noreply.github.com> --- src/services/mcpService.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/services/mcpService.ts b/src/services/mcpService.ts index 6292320..557d348 100644 --- a/src/services/mcpService.ts +++ b/src/services/mcpService.ts @@ -1141,6 +1141,10 @@ Available servers: ${serversList}`, }, required: ['query'], }, + annotations: { + title: 'Search Tools', + readOnlyHint: true, + }, }, { name: 'call_tool', @@ -1161,6 +1165,10 @@ Available servers: ${serversList}`, }, required: ['toolName'], }, + annotations: { + title: 'Call Tool', + openWorldHint: true, + }, }, ], };