aipm-mcp
Version:
Complete AIPM integration for Cursor IDE - Get tasks, manage features, track time, and build features with AI. Supports both MCP stdio mode and HTTP server mode.
81 lines (80 loc) • 2.3 kB
JSON
{
"name": "aipm-mcp",
"version": "1.0.30",
"description": "Complete AIPM integration for Cursor IDE - Get tasks, manage features, track time, and build features with AI. Supports both MCP stdio mode and HTTP server mode.",
"main": "dist/index.js",
"type": "module",
"bin": {
"aipm-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js || true",
"polling:status": "node scripts/manage-polling.js status",
"polling:stop": "node scripts/manage-polling.js stop",
"polling:start": "node scripts/manage-polling.js start",
"polling:restart": "node scripts/manage-polling.js restart",
"polling:health": "node scripts/manage-polling.js health",
"tasks:interactive": "node scripts/manage-tasks.js interactive",
"tasks:list": "node scripts/manage-tasks.js list",
"tasks:approve": "node scripts/manage-tasks.js approve",
"tasks:approve-all": "node scripts/manage-tasks.js approve-all",
"tasks:reject": "node scripts/manage-tasks.js reject",
"test:polling": "node test-polling-fixes.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"dotenv": "^16.3.0",
"zod": "^3.22.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.0",
"express": "^4.18.0",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/inquirer": "^9.0.0",
"@types/express": "^4.17.0",
"@types/cors": "^2.8.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"aipm",
"cursor",
"ai",
"project-management",
"task-management",
"development-tools",
"ide-integration",
"http-server",
"stdio-server",
"feature-building",
"time-tracking"
],
"author": "AIPM Team",
"license": "MIT",
"homepage": "https://github.com/aipm/aipm-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aipm/aipm-mcp.git"
},
"bugs": {
"url": "https://github.com/aipm/aipm-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"scripts/",
"README.md",
"LICENSE"
]
}