codesift-mcp 0.5.18 → 0.5.19
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 +14 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,14 +6,19 @@ CodeSift indexes your codebase with tree-sitter AST parsing and gives AI agents
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
+
**Bulletproof one-liner** (always installs latest, auto-configures all platforms):
|
|
10
|
+
|
|
9
11
|
```bash
|
|
10
|
-
npm
|
|
12
|
+
npm i -g codesift-mcp@latest
|
|
11
13
|
```
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
That's it. The `postinstall` script runs `codesift setup all` automatically.
|
|
16
|
+
**Restart your AI client (Cmd+Q for Claude Code)** so the new MCP server is picked up.
|
|
17
|
+
|
|
18
|
+
To configure individual platforms manually:
|
|
14
19
|
|
|
15
20
|
```bash
|
|
16
|
-
codesift setup claude # Claude Code — config + rules + hooks
|
|
21
|
+
codesift setup claude # Claude Code — config + rules + hooks + CLAUDE.md
|
|
17
22
|
codesift setup codex # Codex CLI — config + AGENTS.md rules
|
|
18
23
|
codesift setup cursor # Cursor IDE — config + .cursor/rules
|
|
19
24
|
codesift setup gemini # Gemini CLI — config + GEMINI.md rules
|
|
@@ -21,6 +26,12 @@ codesift setup antigravity # Google Antigravity — config only
|
|
|
21
26
|
codesift setup all # All platforms at once
|
|
22
27
|
```
|
|
23
28
|
|
|
29
|
+
**Updating to latest version** (use `@latest` to bypass npm cache):
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm i -g codesift-mcp@latest && codesift --version
|
|
33
|
+
```
|
|
34
|
+
|
|
24
35
|
**What `setup` installs (all by default):**
|
|
25
36
|
|
|
26
37
|
| Component | What it does | Opt-out |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codesift-mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.19",
|
|
4
4
|
"description": "MCP server for code intelligence — 146 tools for symbol search, call graph, semantic search, route tracing, community detection, LSP bridge, secret detection, conversation search, and Hono framework intelligence",
|
|
5
5
|
"license": "BSL-1.1",
|
|
6
6
|
"author": "Greg Laskowski",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"lint": "tsc --noEmit",
|
|
28
28
|
"download-wasm": "tsx scripts/download-wasm.ts",
|
|
29
29
|
"prepublishOnly": "npm run build && npm test",
|
|
30
|
-
"postinstall": "echo '\n ✨ CodeSift MCP installed
|
|
30
|
+
"postinstall": "node ./dist/cli.js setup all 2>/dev/null && echo '\n ✨ CodeSift MCP installed and configured for all platforms.\n ⚠️ Restart your AI client (Cmd+Q for Claude Code) to load new MCP server.\n' || echo '\n ✨ CodeSift MCP installed. Run: codesift setup all\n'"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.0.0",
|