typegraph-mcp 0.9.6 → 0.9.11
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.
- package/README.md +11 -4
- 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:
|
|
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
|
|
70
|
+
### Option C: 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`)
|
|
@@ -82,7 +89,7 @@ The interactive `setup` command:
|
|
|
82
89
|
|
|
83
90
|
Use `--yes` to skip prompts and auto-select detected agents.
|
|
84
91
|
|
|
85
|
-
### Option
|
|
92
|
+
### Option D: Manual setup
|
|
86
93
|
|
|
87
94
|
If you prefer to configure things yourself:
|
|
88
95
|
|