package.json•1.39 kB
{
"name": "cursor-chat-history-mcp",
"version": "0.1.9",
"description": "MCP server that provides AI assistants access to Cursor chat history for analysis and insights",
"type": "module",
"main": "dist/server.js",
"bin": {
"cursor-chat-history-mcp": "dist/server.js"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/server.js",
"inspector": "nodemon --watch dist --exec 'npx @modelcontextprotocol/inspector node dist/server.js'",
"test": "vitest run",
"test:ui": "vitest --ui",
"prepublishOnly": "npm run build && chmod +x dist/server.js",
"postinstall": "chmod +x dist/server.js 2>/dev/null || true"
},
"keywords": [
"mcp",
"model-context-protocol",
"cursor",
"chat history",
"conversation",
"ai-assistant",
"code-analysis",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "9.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.11.24",
"@vitest/ui": "^3.2.2",
"nodemon": "^3.1.10",
"shx": "^0.3.4",
"task-master-ai": "^0.16.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^3.2.2"
}
}