package.json•1.02 kB
{
"name": "cursor-cloud-agent-mcp",
"version": "1.0.2",
"description": "MCP server that exposes Cursor Cloud Agents API endpoints as tools for AI assistants",
"type": "module",
"main": "src/server.ts",
"bin": {
"cursor-cloud-agent-mcp": "bin/cli.js"
},
"files": [
"src",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"start": "tsx src/server.ts",
"start:stdio": "tsx src/server-stdio.ts",
"dev": "tsx watch src/server.ts"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"cloud-agents",
"cursor"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jxnl/cursor-cloud-agent-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"express": "^4.18.2",
"tsx": "^4.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
}
}