orchestry-mcp
Version:
Orchestry MCP Server for multi-session task management
64 lines (63 loc) • 1.83 kB
JSON
{
"name": "orchestry-mcp",
"version": "1.0.7",
"description": "Orchestry MCP Server for multi-session task management",
"main": "dist/index.js",
"type": "module",
"bin": {
"orchestry-mcp": "./dist/orchestry.js"
},
"scripts": {
"dev": "NODE_ENV=development tsx watch src/index.ts",
"dev:mcp": "RUN_MODE=stdio tsx watch src/index.ts",
"dev:web": "RUN_MODE=web tsx watch src/index.ts",
"dev:unified": "tsx src/unified-server.ts",
"dev:all": "concurrently \"npm run dev:web\" \"cd web && npm run dev\"",
"build": "tsc && node scripts/add-shebang.js",
"postbuild": "chmod +x dist/*.js",
"start": "node dist/index.js",
"start:mcp": "RUN_MODE=stdio node dist/index.js",
"start:web": "RUN_MODE=web node dist/index.js",
"start:unified": "node dist/unified-server.js",
"test": "vitest",
"web:dev": "cd web && npm run dev",
"web:build": "cd web && npm run build",
"install:all": "npm install && cd web && npm install"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"better-sqlite3": "^11.5.0",
"express": "^4.21.2",
"socket.io": "^4.8.1",
"cors": "^2.8.5",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"concurrently": "^9.1.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/orchestry"
},
"keywords": [
"orchestry",
"mcp",
"model-context-protocol",
"task-management",
"project-management",
"multi-session",
"llm-orchestration",
"ai-assistant",
"claude"
],
"author": "Orchestry Team",
"license": "MIT"
}