@usewhisper/mcp-server 2.4.0 → 2.7.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 +17 -0
- package/dist/server.js +2472 -149
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,6 +12,13 @@ Whisper MCP is the universal context bridge for coding agents. It connects Claud
|
|
|
12
12
|
- Scoped MCP config generator: `whisper-context-mcp scope ...`
|
|
13
13
|
- Tool migration helper: `whisper-context-mcp --print-tool-map`
|
|
14
14
|
|
|
15
|
+
## What's New in v2.6
|
|
16
|
+
|
|
17
|
+
- Automatic project, user, and session scope defaults for MCP retrieval and memory operations.
|
|
18
|
+
- `context.query` can use the automatic agent runtime by default when the caller has not requested manual-only filters.
|
|
19
|
+
- URL and domain-style retrieval requests now isolate matching sources better in shared projects.
|
|
20
|
+
- MCP memory operations now default to pending/session-aware reads and writes when compatible.
|
|
21
|
+
|
|
15
22
|
## Install
|
|
16
23
|
|
|
17
24
|
```text
|
|
@@ -132,6 +139,16 @@ All valid `search` calls return the same top-level payload shape:
|
|
|
132
139
|
}
|
|
133
140
|
```
|
|
134
141
|
|
|
142
|
+
### Automatic Defaults
|
|
143
|
+
|
|
144
|
+
When compatible with the caller’s requested options, Whisper MCP now behaves like an implicit context layer instead of a raw tool database:
|
|
145
|
+
|
|
146
|
+
- `context.query` auto-attaches default project, user, and session scope
|
|
147
|
+
- compatible retrieval calls use automatic runtime-backed pre-retrieval
|
|
148
|
+
- memory writes and session ingest calls attach stable default scope automatically
|
|
149
|
+
|
|
150
|
+
If the caller explicitly requests manual query controls such as `chunk_types`, explicit graph traversal, or other narrow filters, MCP preserves those manual semantics instead of forcing automatic mode.
|
|
151
|
+
|
|
135
152
|
## Source Contract (`context.add_source`)
|
|
136
153
|
|
|
137
154
|
Input:
|