magicciv/tooling/claude-player-mcp/package.json
Natalie d0d00e92d5 feat(@projects/@magic-civilization): add mcp server for claude code integration
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-05-10 18:14:33 -07:00

27 lines
689 B
JSON

{
"name": "@magic-civ/claude-player-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "MCP server exposing the Magic Civilization Claude Player API as tools for Claude Code (p2-67 Phase 4).",
"bin": {
"claude-player-mcp": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
}
}