{ "name": "sub-agents-mcp", "version": "0.14.2", "mcpName": "io.github.shinpr/sub-agents-mcp", "description": "MCP server for delegating tasks to specialized AI assistants in Cursor, Claude Code, Codex, Command Code, Google Antigravity, Gemini, GLM, Kimi, Grok, and OpenCode", "type": "module", "main": "dist/index.js", "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.map", "!dist/**/__tests__", "!dist/**/*.test.*", "README.md", "LICENSE" ], "keywords": [ "mcp", "mcp-server", "model-context-protocol", "sub-agents", "ai-agents", "claude-code", "cursor", "gemini", "codex", "glm", "kimi", "z.ai", "grok", "antigravity", "opencode", "command-code", "llm", "cli", "agent-orchestration" ], "author": "Shinsuke Kagawa", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/shinpr/sub-agents-mcp.git" }, "bugs": { "url": "https://github.com/shinpr/sub-agents-mcp/issues" }, "homepage": "https://github.com/shinpr/sub-agents-mcp#readme", "bin": { "sub-agents-mcp": "dist/index.js" }, "scripts": { "build": "tsc -p tsconfig.build.json", "dev": "tsx src/index.ts", "watch": "tsx watch src/index.ts", "test": "vitest run", "test:ui": "vitest --ui", "test:watch": "vitest", "typecheck:test": "tsc -p tsconfig.test.json --noEmit", "format": "biome format --write src", "format:check": "biome format src", "lint": "biome lint src", "lint:fix": "biome lint --write src", "check": "biome check src", "check:fix": "biome check --write src", "check:deps": "dpdm --no-warning --no-tree --circular --exclude \"node_modules|__tests__|\\.test\\.ts$|\\.spec\\.ts$\" --tsconfig ./tsconfig.json --transform --exit-code circular:1 src/index.ts", "check:knip": "knip", "check:all": "pnpm run check && pnpm run lint && pnpm run format:check && pnpm run check:deps && pnpm run check:knip && pnpm run build && pnpm run typecheck:test && pnpm run test", "prepare": "husky" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0" }, "devDependencies": { "@biomejs/biome": "^2.5.12", "@types/node": "^26.4.1", "@vitest/ui": "^4.1.11", "dpdm": "^4.3.0", "husky": "^9.1.7", "knip": "^6.34.0", "lint-staged": "^17.4.1", "tsx": "^4.23.13", "typescript": "^6.0.3", "vitest": "^4.1.11" }, "packageManager": "pnpm@11.25.0", "engines": { "node": ">=22.22.2" }, "lint-staged": { "src/**/*.{ts,tsx}": [ "biome check --write --no-errors-on-unmatched", "biome format --write --no-errors-on-unmatched" ] } }