cursor-history-mcp 0.1.2 → 0.1.4
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/dist/{index.js → index.cjs} +2014 -1716
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2 -0
- package/package.json +5 -5
- package/dist/index.d.ts +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.d.cts
ADDED
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cursor-history-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server for browsing, searching, and exporting Cursor AI chat history",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/S2thend/cursor-history-mcp"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
-
"main": "dist/index.
|
|
10
|
+
"main": "dist/index.cjs",
|
|
11
11
|
"bin": {
|
|
12
|
-
"cursor-history-mcp": "dist/index.
|
|
12
|
+
"cursor-history-mcp": "dist/index.cjs"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsup",
|
|
16
16
|
"dev": "tsup --watch",
|
|
17
|
-
"start": "node dist/index.
|
|
17
|
+
"start": "node dist/index.cjs",
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
19
|
"lint": "eslint src/",
|
|
20
20
|
"test": "vitest"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@modelcontextprotocol/sdk": "1.0.0",
|
|
37
|
-
"cursor-history": "0.
|
|
37
|
+
"cursor-history": "0.9.1",
|
|
38
38
|
"zod": "3.24.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|