From 06fc04662be7ca42d0899d9f978918bdf98f30a4 Mon Sep 17 00:00:00 2001 From: Mike Bannister Date: Sat, 10 Jan 2026 20:19:19 -0500 Subject: [PATCH] docs: fix kit-dev-mcp tools list to match implementation Remove tools that don't exist in the implementation: - search_code - get_file_content - get_code_summary - semantic_search Add tools that were missing from docs: - grep_ast - get_symbol_code Update tool count from 15+ to 13. Co-Authored-By: Claude Opus 4.5 --- docs/src/content/docs/mcp/kit-dev-mcp.mdx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/src/content/docs/mcp/kit-dev-mcp.mdx b/docs/src/content/docs/mcp/kit-dev-mcp.mdx index 8b3ef20..8fd8cf6 100644 --- a/docs/src/content/docs/mcp/kit-dev-mcp.mdx +++ b/docs/src/content/docs/mcp/kit-dev-mcp.mdx @@ -7,7 +7,7 @@ import { LinkCard, Aside, Card, CardGrid } from '@astrojs/starlight/components'; # kit-dev mcp Server -The kit-dev mcp Server transforms your AI assistant (Cursor, Claude Desktop, VS Code) into an active development partner with 15+ specialized tools for real coding work. +The kit-dev mcp Server transforms your AI assistant (Cursor, Claude Desktop, VS Code) into an active development partner with 13 specialized tools for real coding work. - + - Code search & analysis - File watching & monitoring - Symbol extraction @@ -81,17 +81,15 @@ Add to your Claude Desktop config: The server provides many tools including: - **open_repository** - Open local or remote Git repositories -- **search_code** - Pattern-based code search - **grep_code** - Fast literal string search (120s default timeout, configurable via `KIT_GREP_TIMEOUT`) +- **grep_ast** - Search code using AST patterns (semantic search) - **get_file_tree** - Repository file structure with pagination support (`limit`/`offset` params) -- **get_file_content** - Read file contents - **extract_symbols** - Extract functions, classes, and symbols +- **get_symbol_code** - Get source code of a specific symbol (lazy loading for context efficiency) - **find_symbol_usages** - Find where symbols are used -- **get_code_summary** - AI-powered code summaries - **warm_cache** - Pre-warm caches for faster operations on large codebases (100K+ files) - **review_diff** - AI-powered diff reviews - **deep_research_package** - Comprehensive package documentation -- **semantic_search** - Vector-based code search - **package_search_grep** - Search package source code with regex patterns - **package_search_hybrid** - Semantic search in package source code - **package_search_read_file** - Read specific files from packages