@notbnull/mcp-cursor-taskmaster
Version:
A project-scoped MCP server requiring explicit --project-dir configuration for task management, memory retrieval, and agentic workflows
79 lines (78 loc) • 2.06 kB
JSON
{
"name": "@notbnull/mcp-cursor-taskmaster",
"version": "1.4.1",
"description": "A project-scoped MCP server requiring explicit --project-dir configuration for task management, memory retrieval, and agentic workflows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cursor-taskmaster": "dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-public",
"copy-public": "cp -r public dist/ 2>/dev/null || xcopy /E /I public dist\\public 2>nul || echo 'Public folder copied'",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"taskmaster",
"task-management",
"memory",
"workflow",
"agent",
"project-scoped",
"ai",
"llm"
],
"author": "notbnull",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/notbnull/mcp-cursor-taskmaster.git"
},
"homepage": "https://github.com/notbnull/mcp-cursor-taskmaster#readme",
"bugs": {
"url": "https://github.com/notbnull/mcp-cursor-taskmaster/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.6.0",
"express": "^4.21.2",
"open": "^10.1.0",
"socket.io": "^4.8.1",
"vectra": "^0.11.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"public",
"README.md",
"LICENSE"
]
}