typegraph-mcp 0.9.6 → 0.9.10

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 +10 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -43,7 +43,14 @@ Agent: ts_trace_chain({ file: "src/handlers.ts", symbol: "createUser" })
43
43
 
44
44
  ## Quick start
45
45
 
46
- ### Option A: Claude Code plugin (recommended)
46
+ ### Option A: npm (recommended)
47
+
48
+ ```bash
49
+ cd /path/to/your-ts-project
50
+ npx typegraph-mcp setup
51
+ ```
52
+
53
+ ### Option B: Claude Code plugin
47
54
 
48
55
  ```bash
49
56
  # Clone and install
@@ -60,7 +67,7 @@ The plugin auto-configures everything:
60
67
  - `/typegraph:check` and `/typegraph:test` commands available in-session
61
68
  - SessionStart hook verifies dependencies are installed
62
69
 
63
- ### Option B: CLI setup (all agents)
70
+ ### Option C: CLI setup (from source)
64
71
 
65
72
  ```bash
66
73
  # Clone and install
@@ -72,7 +79,7 @@ cd /path/to/your-ts-project
72
79
  npx tsx ~/typegraph-mcp/cli.ts setup
73
80
  ```
74
81
 
75
- The interactive `setup` command:
82
+ The interactive `setup` command (Options A and C):
76
83
  1. Auto-detects which AI agents you use (Claude Code, Cursor, Codex CLI, Gemini CLI, GitHub Copilot)
77
84
  2. Copies the plugin into `./plugins/typegraph-mcp/` and installs dependencies
78
85
  3. Registers the MCP server in each agent's config file (`.mcp.json`, `.cursor/mcp.json`, `.codex/config.toml`, `.vscode/mcp.json`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typegraph-mcp",
3
- "version": "0.9.6",
3
+ "version": "0.9.10",
4
4
  "description": "Type-aware codebase navigation for AI coding agents — 14 MCP tools powered by tsserver + oxc",
5
5
  "license": "MIT",
6
6
  "type": "module",