codesift-mcp 0.5.20 → 0.5.21

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 +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,14 +6,15 @@ 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):
9
+ **Bulletproof one-liner** (bypasses npm cache, auto-configures all platforms):
10
10
 
11
11
  ```bash
12
- npm i -g codesift-mcp@latest
12
+ npm i -g codesift-mcp@latest --prefer-online
13
13
  ```
14
14
 
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.
15
+ `--prefer-online` forces npm to fetch fresh registry metadata, bypassing local cache (which can be stale and cause `ETARGET` errors). The `postinstall` script runs `codesift setup all` automatically.
16
+
17
+ **Restart your AI client** (close + reopen) so the new MCP server is picked up. New terminal sessions in your IDE work fine — no need to quit the IDE itself.
17
18
 
18
19
  To configure individual platforms manually:
19
20
 
@@ -26,10 +27,10 @@ codesift setup antigravity # Google Antigravity — config only
26
27
  codesift setup all # All platforms at once
27
28
  ```
28
29
 
29
- **Updating to latest version** (use `@latest` to bypass npm cache):
30
+ **Troubleshooting** if `codesift --version` shows old version after install:
30
31
 
31
32
  ```bash
32
- npm i -g codesift-mcp@latest && codesift --version
33
+ npm cache clean --force && npm i -g codesift-mcp@latest --prefer-online
33
34
  ```
34
35
 
35
36
  **What `setup` installs (all by default):**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codesift-mcp",
3
- "version": "0.5.20",
3
+ "version": "0.5.21",
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",