package.jsonā¢1.65 kB
{
"name": "@iris-mcp/server",
"version": "1.0.0",
"description": "MCP server for cross-project Claude Code coordination - Bridge your AI agents across codebases",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"iris-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude",
"claude-code",
"multi-agent",
"coordination",
"team-collaboration"
],
"author": "Jenova Marie",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"files": [
"dist"
],
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^24.7.0",
"@types/react": "^18.2.48",
"@types/ws": "^8.5.10",
"@vitest/ui": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"ink-table": "^3.1.0",
"react": "^18.2.0",
"socket.io": "^4.7.2",
"ws": "^8.16.0",
"zod": "^3.23.0"
}
}