{ "name": "godot-mcp-runtime", "version": "3.1.2", "description": "A lightweight, zero-footprint TypeScript MCP server that lets AI assistants interact with the Godot 4.x game engine: not just editing files, but playing the game.", "main": "dist/index.js", "type": "module", "bin": { "godot-mcp-runtime": "dist/index.js" }, "scripts": { "build": "tsc && node scripts/copy-scripts.js", "start": "node dist/index.js", "dev": "npm run build && node dist/index.js", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", "verify": "bash scripts/verify.sh", "safe-install": "node scripts/safe-install.js", "snapshot-cross-platform-deps": "node scripts/snapshot-cross-platform-deps.js", "install-hooks": "node scripts/install-hooks.js" }, "keywords": [ "mcp", "godot", "game-development", "model-context-protocol", "ai", "game-engine", "godot4" ], "author": "Owen Sterling", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Erodenn/godot-mcp-runtime.git" }, "homepage": "https://github.com/Erodenn/godot-mcp-runtime", "bugs": { "url": "https://github.com/Erodenn/godot-mcp-runtime/issues" }, "mcpName": "io.github.Erodenn/godot-mcp-runtime", "dependencies": { "@modelcontextprotocol/sdk": "^1.25.2" }, "devDependencies": { "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1", "@types/node": "^25.0.9", "@typescript-eslint/eslint-plugin": "^8.59.1", "@typescript-eslint/parser": "^8.59.1", "@vitest/coverage-v8": "^4.1.5", "ajv": "^8.20.0", "eslint": "^9.39.4", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "prettier": "^3.8.3", "typescript": "^5.9.3", "vitest": "^4.1.5" }, "files": [ "dist/", "README.md", "LICENSE" ], "engines": { "node": ">=20.0.0" } }