codesift-mcp 0.2.18 → 0.3.0
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 +3 -3
- package/package.json +1 -1
- package/rules/codesift.md +4 -3
- package/rules/codesift.mdc +4 -3
- package/rules/codex.md +4 -3
- package/rules/gemini.md +4 -3
package/README.md
CHANGED
|
@@ -185,9 +185,9 @@ codesift retrieve local/my-project \
|
|
|
185
185
|
| `codesift generate-claude-md <repo>` | Generate CLAUDE.md project summary |
|
|
186
186
|
| `codesift list-patterns` | List all built-in anti-pattern names |
|
|
187
187
|
|
|
188
|
-
## MCP tools (66 total —
|
|
188
|
+
## MCP tools (66 total — 35 core + 31 discoverable)
|
|
189
189
|
|
|
190
|
-
When running as an MCP server, CodeSift exposes
|
|
190
|
+
When running as an MCP server, CodeSift exposes 35 core tools directly. The remaining 31 niche tools are discoverable via `discover_tools` and `describe_tools`.
|
|
191
191
|
|
|
192
192
|
| Category | Tools |
|
|
193
193
|
|----------|-------|
|
|
@@ -315,7 +315,7 @@ Custom regex is also supported: `codesift patterns local/project "Promise<.*any>
|
|
|
315
315
|
|
|
316
316
|
## MCP server setup
|
|
317
317
|
|
|
318
|
-
CodeSift runs as an [MCP](https://modelcontextprotocol.io) server, exposing 66 tools to AI agents (
|
|
318
|
+
CodeSift runs as an [MCP](https://modelcontextprotocol.io) server, exposing 66 tools to AI agents (35 core + 31 discoverable). The fastest setup method is `codesift setup <platform>` which handles everything automatically. Manual configuration is also supported:
|
|
319
319
|
|
|
320
320
|
### OpenAI Codex
|
|
321
321
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codesift-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MCP server for code intelligence — 66 tools for symbol search, call graph, semantic search, route tracing, community detection, LSP bridge, secret detection, and conversation search",
|
|
5
5
|
"license": "BSL-1.1",
|
|
6
6
|
"author": "Greg Laskowski",
|
package/rules/codesift.md
CHANGED
|
@@ -21,15 +21,15 @@ The `repo` param is optional — it auto-resolves from CWD. Just call CodeSift t
|
|
|
21
21
|
|
|
22
22
|
## Tool Discovery
|
|
23
23
|
|
|
24
|
-
**66 MCP tools total** (
|
|
24
|
+
**66 MCP tools total** (35 core visible + 31 discoverable).
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
35 core tools appear in ListTools. Remaining 31 niche tools are discovered on demand:
|
|
27
27
|
|
|
28
28
|
- `discover_tools(query="dead code")` — keyword search across all 66 tools
|
|
29
29
|
- `describe_tools(names=["find_dead_code"])` — get full parameter schema
|
|
30
30
|
- `describe_tools(names=["find_dead_code"], reveal=true)` — also reveal in ListTools
|
|
31
31
|
|
|
32
|
-
Core tools always visible
|
|
32
|
+
Core tools (35) always visible — includes search, symbols, context, analysis, architecture, conversations, and meta tools. Use `discover_tools` for niche tools like `classify_roles`, `find_unused_imports`, `rename_symbol`, `ast_query`, etc.
|
|
33
33
|
|
|
34
34
|
## Tool Mapping
|
|
35
35
|
|
|
@@ -147,6 +147,7 @@ The server appends hint codes to responses to guide tool usage. Act on them imme
|
|
|
147
147
|
| `H7` | `get_symbol` after `search_symbols` | Use `get_context_bundle` |
|
|
148
148
|
| `H8(n)` | n× `get_symbol` calls | Use `assemble_context(level='L1')` |
|
|
149
149
|
| `H9` | Question-word text query | Use semantic search |
|
|
150
|
+
| `H10` | 50+ tool calls this session | Call `get_session_snapshot` to preserve context before compaction |
|
|
150
151
|
|
|
151
152
|
## ALWAYS
|
|
152
153
|
|
package/rules/codesift.mdc
CHANGED
|
@@ -15,15 +15,15 @@ For multi-repo sessions, call `list_repos()` to discover available repos.
|
|
|
15
15
|
|
|
16
16
|
## Tool Discovery
|
|
17
17
|
|
|
18
|
-
**66 MCP tools total** (
|
|
18
|
+
**66 MCP tools total** (35 core visible + 31 discoverable).
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
35 core tools appear in ListTools. Remaining 31 niche tools are discovered on demand:
|
|
21
21
|
|
|
22
22
|
- `discover_tools(query="dead code")` — keyword search across all 66 tools
|
|
23
23
|
- `describe_tools(names=["find_dead_code"])` — get full parameter schema
|
|
24
24
|
- `describe_tools(names=["find_dead_code"], reveal=true)` — also reveal in ListTools
|
|
25
25
|
|
|
26
|
-
Core tools always visible
|
|
26
|
+
Core tools (35) always visible — includes search, symbols, context, analysis, architecture, conversations, and meta tools. Use `discover_tools` for niche tools like `classify_roles`, `find_unused_imports`, `rename_symbol`, `ast_query`, etc.
|
|
27
27
|
|
|
28
28
|
## Tool Mapping
|
|
29
29
|
|
|
@@ -141,6 +141,7 @@ The server appends hint codes to responses to guide tool usage. Act on them imme
|
|
|
141
141
|
| `H7` | `get_symbol` after `search_symbols` | Use `get_context_bundle` |
|
|
142
142
|
| `H8(n)` | n× `get_symbol` calls | Use `assemble_context(level='L1')` |
|
|
143
143
|
| `H9` | Question-word text query | Use semantic search |
|
|
144
|
+
| `H10` | 50+ tool calls this session | Call `get_session_snapshot` to preserve context before compaction |
|
|
144
145
|
|
|
145
146
|
## ALWAYS
|
|
146
147
|
|
package/rules/codex.md
CHANGED
|
@@ -10,15 +10,15 @@ For multi-repo sessions, call `list_repos()` to discover available repos.
|
|
|
10
10
|
|
|
11
11
|
## Tool Discovery
|
|
12
12
|
|
|
13
|
-
**66 MCP tools total** (
|
|
13
|
+
**66 MCP tools total** (35 core visible + 31 discoverable).
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
35 core tools appear in ListTools. Remaining 31 niche tools are discovered on demand:
|
|
16
16
|
|
|
17
17
|
- `discover_tools(query="dead code")` — keyword search across all 66 tools
|
|
18
18
|
- `describe_tools(names=["find_dead_code"])` — get full parameter schema
|
|
19
19
|
- `describe_tools(names=["find_dead_code"], reveal=true)` — also reveal in ListTools
|
|
20
20
|
|
|
21
|
-
Core tools always visible
|
|
21
|
+
Core tools (35) always visible — includes search, symbols, context, analysis, architecture, conversations, and meta tools. Use `discover_tools` for niche tools like `classify_roles`, `find_unused_imports`, `rename_symbol`, `ast_query`, etc.
|
|
22
22
|
|
|
23
23
|
## Tool Mapping
|
|
24
24
|
|
|
@@ -136,6 +136,7 @@ The server appends hint codes to responses to guide tool usage. Act on them imme
|
|
|
136
136
|
| `H7` | `get_symbol` after `search_symbols` | Use `get_context_bundle` |
|
|
137
137
|
| `H8(n)` | n× `get_symbol` calls | Use `assemble_context(level='L1')` |
|
|
138
138
|
| `H9` | Question-word text query | Use semantic search |
|
|
139
|
+
| `H10` | 50+ tool calls this session | Call `get_session_snapshot` to preserve context before compaction |
|
|
139
140
|
|
|
140
141
|
## ALWAYS
|
|
141
142
|
|
package/rules/gemini.md
CHANGED
|
@@ -10,15 +10,15 @@ For multi-repo sessions, call `list_repos()` to discover available repos.
|
|
|
10
10
|
|
|
11
11
|
## Tool Discovery
|
|
12
12
|
|
|
13
|
-
**66 MCP tools total** (
|
|
13
|
+
**66 MCP tools total** (35 core visible + 31 discoverable).
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
35 core tools appear in ListTools. Remaining 31 niche tools are discovered on demand:
|
|
16
16
|
|
|
17
17
|
- `discover_tools(query="dead code")` — keyword search across all 66 tools
|
|
18
18
|
- `describe_tools(names=["find_dead_code"])` — get full parameter schema
|
|
19
19
|
- `describe_tools(names=["find_dead_code"], reveal=true)` — also reveal in ListTools
|
|
20
20
|
|
|
21
|
-
Core tools always visible
|
|
21
|
+
Core tools (35) always visible — includes search, symbols, context, analysis, architecture, conversations, and meta tools. Use `discover_tools` for niche tools like `classify_roles`, `find_unused_imports`, `rename_symbol`, `ast_query`, etc.
|
|
22
22
|
|
|
23
23
|
## Tool Mapping
|
|
24
24
|
|
|
@@ -136,6 +136,7 @@ The server appends hint codes to responses to guide tool usage. Act on them imme
|
|
|
136
136
|
| `H7` | `get_symbol` after `search_symbols` | Use `get_context_bundle` |
|
|
137
137
|
| `H8(n)` | n× `get_symbol` calls | Use `assemble_context(level='L1')` |
|
|
138
138
|
| `H9` | Question-word text query | Use semantic search |
|
|
139
|
+
| `H10` | 50+ tool calls this session | Call `get_session_snapshot` to preserve context before compaction |
|
|
139
140
|
|
|
140
141
|
## ALWAYS
|
|
141
142
|
|