cursor-history-mcp 0.3.0 → 0.3.1
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 +6 -4
- package/dist/index.cjs +23474 -4739
- package/dist/index.cjs.map +1 -1
- package/docs/README_es.md +6 -4
- package/docs/README_fr.md +6 -4
- package/docs/README_zh.md +6 -4
- package/docs/development.md +21 -0
- package/docs/sdk-compatibility.md +18 -0
- package/package.json +12 -6
package/README.md
CHANGED
|
@@ -30,7 +30,9 @@ No embeddings, indexing service, or API key is required by this server. Your ass
|
|
|
30
30
|
|
|
31
31
|
Requires Node.js **20.x or 22.x–26.x**, readable local Cursor history, and a client that supports local stdio MCP servers. The client must run the server on the machine where that history is available.
|
|
32
32
|
|
|
33
|
-
**Version scope:** these docs describe `cursor-history-mcp@0.3.
|
|
33
|
+
**Version scope:** these docs describe `cursor-history-mcp@0.3.1`, powered by `cursor-history@0.18.0`. If you are testing a checkout before its npm publication, use [the source setup](#run-from-source) below.
|
|
34
|
+
|
|
35
|
+
**Client compatibility:** the server uses MCP SDK 1.30.0. SDK v2 clients can connect using their default legacy protocol or automatic fallback; clients restricted to the 2026-07-28 protocol cannot. See [SDK interoperability](docs/sdk-compatibility.md) for the tested scope.
|
|
34
36
|
|
|
35
37
|
### Configure the npm package
|
|
36
38
|
|
|
@@ -41,7 +43,7 @@ Add this server entry to your client's MCP configuration:
|
|
|
41
43
|
"mcpServers": {
|
|
42
44
|
"cursor-history": {
|
|
43
45
|
"command": "npx",
|
|
44
|
-
"args": ["-y", "cursor-history-mcp@0.3.
|
|
46
|
+
"args": ["-y", "cursor-history-mcp@0.3.1"]
|
|
45
47
|
}
|
|
46
48
|
}
|
|
47
49
|
}
|
|
@@ -58,7 +60,7 @@ Use project-local `.cursor/mcp.json` or global `~/.cursor/mcp.json`. Add the ent
|
|
|
58
60
|
Register the versioned npm package for your user account:
|
|
59
61
|
|
|
60
62
|
```bash
|
|
61
|
-
claude mcp add --transport stdio --scope user cursor-history -- npx -y cursor-history-mcp@0.3.
|
|
63
|
+
claude mcp add --transport stdio --scope user cursor-history -- npx -y cursor-history-mcp@0.3.1
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
See [Claude Code's MCP documentation](https://code.claude.com/docs/en/mcp) for scopes and permissions.
|
|
@@ -100,7 +102,7 @@ Agents can use either interface: direct CLI/API invocation or MCP tool calls.
|
|
|
100
102
|
<a id="compatibility"></a>
|
|
101
103
|
## Works across storage generations
|
|
102
104
|
|
|
103
|
-
With the `0.18.0` reader in MCP `0.3.
|
|
105
|
+
With the `0.18.0` reader in MCP `0.3.1`:
|
|
104
106
|
|
|
105
107
|
| Source | Local files | Read / search / export |
|
|
106
108
|
|---|---|---|
|