mcp-handoff-server
Version:
MCP server for managing AI agent handoffs with structured documentation and seamless task transitions
62 lines (61 loc) • 1.47 kB
JSON
{
"name": "mcp-handoff-server",
"version": "1.0.2",
"description": "MCP server for managing AI agent handoffs with structured documentation and seamless task transitions",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-handoff-server": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [
"mcp",
"model-context-protocol",
"ai-agents",
"handoff",
"task-management",
"agent-collaboration",
"documentation",
"workflow"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"cli": "node --loader ts-node/esm src/cli.ts",
"prepublishOnly": "npm run build",
"test": "node test-handoff.js"
},
"author": "MCPaaS.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dazeb/mcp-handoff-server.git"
},
"bugs": {
"url": "https://github.com/dazeb/mcp-handoff-server/issues"
},
"homepage": "https://github.com/dazeb/mcp-handoff-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.0.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}