From 9e94d0693bec332ef947b18e4d8fea82dd04bbc6 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 27 Jun 2025 22:26:55 -0700 Subject: [PATCH] Fix WithBool to WithBoolean in find_comments tool --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 689625d..3ef0b86 100644 --- a/main.go +++ b/main.go @@ -169,7 +169,7 @@ func main() { mcp.WithString("filter", mcp.Description("Optional regex to filter comments (applies to 'todo' and 'all' types)"), ), - mcp.WithBool("include_context", + mcp.WithBoolean("include_context", mcp.Description("Include surrounding lines of code as context (default: false)"), ), )