callgraph-mcp 1.7.1 → 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 +4 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -221,6 +221,10 @@ The agent calls `flowmap_find_cycles(workspacePath)`. Every cycle is returned wi
221
221
 
222
222
  ---
223
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
+
224
228
  ## How It Works
225
229
 
226
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.1",
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
  }