agent-ecosystem/mcp-server/package.json
iliya c2d0a20811 chore: enhance package scripts and improve MCP server functionality
- Updated the check:workspace script to include end-to-end testing for the MCP package.
- Added a new test:e2e script in the MCP server for running end-to-end tests.
- Refactored controller import logic to support default exports from the agent-teams-controller.
- Improved team deletion handling in IPC by ensuring team provisioning is stopped before deletion.
- Introduced a function to resolve the real node binary path for better compatibility in Electron environments.
- Enhanced task display in MemberCard and TaskDetailDialog components for improved user experience.
2026-03-07 20:48:03 +02:00

53 lines
1.2 KiB
JSON

{
"name": "agent-teams-mcp",
"version": "1.0.0",
"description": "MCP server for managing Claude Agent Teams through the agent-teams-controller API",
"type": "module",
"main": "dist/index.js",
"bin": {
"agent-teams-mcp": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"mcp-server",
"claude",
"agent-teams",
"kanban",
"task-management",
"model-context-protocol"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickchernyy/agent-teams-mcp"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"test": "vitest run",
"test:e2e": "pnpm build && vitest run test/stdio.e2e.test.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"agent-teams-controller": "workspace:*",
"fastmcp": "^3.34.0",
"zod": "^4.3.6"
},
"devDependencies": {
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.2",
"vitest": "^3.1.4",
"@types/node": "^22.15.18"
},
"engines": {
"node": ">=20"
}
}