@usewhisper/mcp-server 2.13.0 → 2.15.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 +5 -2
- package/dist/server.js +1435 -537
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Once the server is running, agents should call MCP tools like `search`, `remembe
|
|
|
35
35
|
- `WHISPER_API_KEY` (required, use your `wsk_*` API key)
|
|
36
36
|
- `WHISPER_PROJECT` (optional default)
|
|
37
37
|
- `WHISPER_BASE_URL` (optional, defaults to `https://context.usewhisper.dev`)
|
|
38
|
-
- `WHISPER_MCP_MODE` (optional: `remote|local|auto`,
|
|
38
|
+
- `WHISPER_MCP_MODE` (optional: `remote|local|auto`, recommended `auto`)
|
|
39
39
|
- `WHISPER_LOCAL_ALLOWLIST` (optional comma-separated roots for local ingest)
|
|
40
40
|
- `SLACK_BOT_TOKEN` (required for Slack connector runs)
|
|
41
41
|
- `SLACK_CHANNEL_ID` (required for Slack connector runs)
|
|
@@ -74,7 +74,7 @@ export WHISPER_BASE_URL="https://context.usewhisper.dev"
|
|
|
74
74
|
3. `context.add_source`
|
|
75
75
|
4. `context.source_status`
|
|
76
76
|
5. `context.query`
|
|
77
|
-
6. `context.get_relevant`
|
|
77
|
+
6. `context.get_relevant` (compatibility alias; prefer `context.query`)
|
|
78
78
|
7. `context.claim_verify`
|
|
79
79
|
8. `context.evidence_answer`
|
|
80
80
|
9. `context.export_bundle`
|
|
@@ -92,12 +92,15 @@ export WHISPER_BASE_URL="https://context.usewhisper.dev"
|
|
|
92
92
|
21. `index.autosubscribe_deps`
|
|
93
93
|
22. `code.search_text`
|
|
94
94
|
23. `code.search_semantic`
|
|
95
|
+
24. `index.auto_repair`
|
|
96
|
+
25. `fix`
|
|
95
97
|
|
|
96
98
|
## Agent-Friendly Primary Verbs
|
|
97
99
|
|
|
98
100
|
These verbs are the primary MCP interface for agents. Namespaced tools remain available as compatibility and advanced surfaces.
|
|
99
101
|
|
|
100
102
|
- `search` -> exact fetch by `id`, semantic retrieval by `query`, or hybrid retrieval when both are present
|
|
103
|
+
- `fix` -> `index.auto_repair` for deterministic setup/retrieval repair
|
|
101
104
|
- `search_code` -> `code.search_semantic`
|
|
102
105
|
- `grep` -> `code.search_text`
|
|
103
106
|
- `read` -> local file read with optional line ranges
|