cursor-history-mcp 0.2.0 → 0.2.2
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/LICENSE +7 -0
- package/README.md +27 -2
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2025 Borui
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Cursor History MCP
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="docs/cursor-history-mcp-logo.jpg" alt="cursor-history-mcp logo" width="200">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/cursor-history-mcp)
|
|
8
|
+
[](https://www.npmjs.com/package/cursor-history-mcp)
|
|
9
|
+
[](https://opensource.org/licenses/MIT)
|
|
10
|
+
[](https://nodejs.org/)
|
|
11
|
+
[](https://www.typescriptlang.org/)
|
|
12
|
+
|
|
13
|
+
**MCP server for browsing, searching, exporting, and backing up your Cursor AI chat history.**
|
|
14
|
+
|
|
15
|
+
Bring your Cursor AI chat history directly into Claude. Search past conversations, export sessions, create backups, and generate year-in-review reports—all through natural language. Built on the [Model Context Protocol](https://modelcontextprotocol.io/) for seamless AI assistant integration.
|
|
16
|
+
|
|
17
|
+
Free, open-source, and MIT licensed. Built by the community, for the community.
|
|
4
18
|
|
|
5
19
|
## Installation
|
|
6
20
|
|
|
@@ -12,6 +26,10 @@ npx cursor-history-mcp
|
|
|
12
26
|
|
|
13
27
|
## Configuration
|
|
14
28
|
|
|
29
|
+
### Cursor
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+
|
|
15
33
|
### Claude Code
|
|
16
34
|
|
|
17
35
|
Add to your Claude Code MCP settings:
|
|
@@ -70,6 +88,13 @@ After configuring, ask your AI assistant:
|
|
|
70
88
|
- Node.js 20+
|
|
71
89
|
- Cursor IDE installed with existing chat history
|
|
72
90
|
|
|
91
|
+
## Contributing
|
|
92
|
+
|
|
93
|
+
Contributions are welcome! Whether it's bug reports, feature requests, documentation improvements, or code contributions—all PRs and issues are appreciated.
|
|
94
|
+
|
|
95
|
+
- [Open an issue](https://github.com/S2thend/cursor-history-mcp/issues)
|
|
96
|
+
- [Submit a pull request](https://github.com/S2thend/cursor-history-mcp/pulls)
|
|
97
|
+
|
|
73
98
|
## License
|
|
74
99
|
|
|
75
100
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cursor-history-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "MCP server for browsing, searching, and exporting Cursor AI chat history",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"ai",
|
|
28
28
|
"claude"
|
|
29
29
|
],
|
|
30
|
-
"author": "",
|
|
30
|
+
"author": "Borui Cai",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=20.0.0"
|