You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The server provides **11 powerful MCP tools** for intelligent codebase management. Whether you're an AI agent or human developer, these tools make navigating code effortless.
272
+
The server provides **13 powerful MCP tools** for intelligent codebase management. Whether you're an AI agent or human developer, these tools make navigating code effortless.
272
273
273
274
### 🎯 Essential Tools (Start Here)
274
275
| Tool | Purpose | When to Use |
@@ -291,6 +292,7 @@ The server provides **11 powerful MCP tools** for intelligent codebase managemen
**Implementation:** All 12 tools verified against actual server code
7
+
**Implementation:** All 13 tools verified against actual server code
8
8
---
9
9
10
-
Complete reference for all 12 MCP tools provided by the Code Indexer server. Whether you're building AI agents or integrating MCP tools directly, this guide shows you exactly how to use each tool effectively.
10
+
Complete reference for all 13 MCP tools provided by the Code Indexer server. Whether you're building AI agents or integrating MCP tools directly, this guide shows you exactly how to use each tool effectively.
11
11
12
12
**🎯 New to MCP Code Indexer?** Start with the [Quick Start Guide](../README.md#-quick-start) to set up your server first.
13
13
@@ -27,6 +27,7 @@ Complete reference for all 12 MCP tools provided by the Code Indexer server. Whe
Find code similar to a given code snippet or file section using vector-based semantic search. This tool uses AI embeddings to understand code context and meaning, providing more intelligent similarity detection than text-based matching.
951
+
952
+
**⚠️ Vector Mode Required**: This tool only works when vector mode is enabled for the project.
953
+
954
+
#### Parameters
955
+
956
+
```typescript
957
+
interfaceFindSimilarCodeParams {
958
+
projectName:string; // The name of the project
959
+
folderPath:string; // Absolute path to the project folder on disk
960
+
961
+
// Input source (mutually exclusive)
962
+
code_snippet?:string; // Direct code snippet to search for similarities
963
+
file_path?:string; // Path to file containing code to analyze
964
+
line_start?:number; // Starting line number for file section (1-indexed)
965
+
line_end?:number; // Ending line number for file section (1-indexed)
0 commit comments