callgraph-mcp 1.5.4 → 1.5.5

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 +21 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,7 +31,7 @@ Most AI coding tools answer structural questions about your codebase by reading
31
31
 
32
32
  ## Setup
33
33
 
34
- ### Option 1 — VS Code via `npx` (no install required)
34
+ ### Option 1 — VS Code via `npx`
35
35
 
36
36
  Add to your project's `.vscode/mcp.json`:
37
37
 
@@ -50,11 +50,30 @@ Add to your project's `.vscode/mcp.json`:
50
50
  }
51
51
  ```
52
52
 
53
+ ### Option 2
54
+
55
+ ```json
56
+ {
57
+ "servers": {
58
+ "flowmap": {
59
+ "type": "stdio",
60
+ "command": "callgraph-mcp",
61
+ "args": [],
62
+ "env": {
63
+ "FLOWMAP_TRANSPORT": "stdio"
64
+ }
65
+ }
66
+ }
67
+ }
68
+ ```
69
+
70
+
71
+
53
72
  Start the server in your editor. WASM grammars are bundled — no environment variables needed.
54
73
 
55
74
  > **Tip:** Create `.vscode/mcp.json` via the Command Palette -> **MCP: Add Server** -> **stdio**.
56
75
 
57
- ### Option 2 — HTTP-SSE (shared or remote server)
76
+ ### Option 3 — HTTP-SSE (shared or remote server)
58
77
 
59
78
  Use `FLOWMAP_TRANSPORT=http` for HTTP-SSE compatible clients.
60
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "callgraph-mcp",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
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",