callgraph-mcp 1.7.0 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -10,6 +10,8 @@ Powered by [`@codeflow-map/core`](https://www.npmjs.com/package/@codeflow-map/co
10
10
 
11
11
  ![Cyclic call graph demo](https://raw.githubusercontent.com/devricky-codes/callgraph-mcp/refs/heads/main/assets/cyclic.gif)
12
12
 
13
+ *Designed for zero false negatives (within static limits). It never misses anything it can see (high recall), even if that means over-reporting.*
14
+
13
15
  > **Bundled grammars:** TypeScript, JavaScript, TSX, JSX, Python, and Go grammars are included. After install, they are available in `callgraph-mcp/grammars`.
14
16
 
15
17
  ---
@@ -219,6 +221,10 @@ The agent calls `flowmap_find_cycles(workspacePath)`. Every cycle is returned wi
219
221
 
220
222
  ---
221
223
 
224
+ ![Duplicates](https://raw.githubusercontent.com/devricky-codes/callgraph-mcp/refs/heads/main/assets/duplicates.gif)
225
+
226
+ *Duplicates flags different functions that could be a single re-usable function*
227
+
222
228
  ## How It Works
223
229
 
224
230
  1. Tree-sitter WASM grammars parse each source file into an AST — no runtime execution, no imports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "callgraph-mcp",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "description": "MCP server for codebase call-flow analysis. Local, deterministic, language-agnostic. Powered by @codeflow-map/core.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -71,13 +71,14 @@
71
71
  "dependencies": {
72
72
  "@codeflow-map/core": "^1.0.1",
73
73
  "@modelcontextprotocol/sdk": "^1.27.0",
74
+ "callgraph-mcp": "^1.6.4",
74
75
  "fast-glob": "^3.3.0",
75
76
  "zod": "^3.25.0"
76
77
  },
77
78
  "devDependencies": {
78
79
  "@types/node": "^20.10.6",
79
80
  "esbuild": "^0.27.4",
80
- "typescript": "^5.3.3",
81
- "tsx": "^4.0.0"
81
+ "tsx": "^4.0.0",
82
+ "typescript": "^5.3.3"
82
83
  }
83
84
  }