- Renamed package from `@claude-team/mcp-server` to `agent-teams-mcp` and updated description for clarity. - Added `files` and `keywords` fields in package.json for better package management. - Introduced new loading logic in ClaudeLogsSection to handle older log retrieval and improved state management for loading indicators. - Implemented utility functions for appending older log lines and determining overlap, enhancing log display efficiency. - Updated ActivityItem and ActivityTimeline components to support message collapsing functionality, improving user experience in message handling.
49 lines
1,017 B
JSON
49 lines
1,017 B
JSON
{
|
|
"name": "agent-teams-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for managing Claude Agent Teams kanban board and tasks via teamctl CLI",
|
|
"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",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"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"
|
|
}
|
|
}
|