{ "name": "fivem-mcp-server", "version": "0.6.0", "mcpName": "io.github.ziyacivan/fivem-mcp", "description": "MCP server that lets AI agents build, run and live-test FiveM servers over DevCon, RCON and the mcpb bridge", "license": "MIT", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/ziyacivan/fivem-mcp.git" }, "homepage": "https://github.com/ziyacivan/fivem-mcp#readme", "bugs": { "url": "https://github.com/ziyacivan/fivem-mcp/issues" }, "keywords": [ "mcp", "model-context-protocol", "fivem", "gta5", "cfx", "rcon", "devcon", "game-testing", "ai-agents" ], "bin": { "fivem-mcp-server": "dist/index.js" }, "main": "dist/index.js", "files": [ "dist", "!dist/.tsbuildinfo", "bridge", "server.json", "docs/protocol.md", "CHANGELOG.md" ], "engines": { "node": ">=22" }, "packageManager": "pnpm@9.15.0", "scripts": { "check": "biome ci .", "format": "biome check --write .", "typecheck": "tsc --noEmit", "test": "vitest run", "test:coverage": "vitest run --coverage", "build": "tsc -p tsconfig.build.json", "ci": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run build", "prepublishOnly": "pnpm run ci", "sync-version": "node scripts/sync-version.mjs", "version": "node scripts/sync-version.mjs && git add server.json bridge/fxmanifest.lua", "live:probe": "pnpm run build && node scripts/live-probe.mjs", "live:e2e": "pnpm run build && node scripts/live-e2e.mjs", "live:m2": "pnpm run build && node scripts/live-m2.mjs", "live:m3": "pnpm run build && node scripts/live-m3.mjs", "smoke:start": "pnpm run build && node scripts/smoke-start.mjs" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "zod": "^4.5.4" }, "devDependencies": { "@biomejs/biome": "^2.5.12", "@types/node": "^22.20.1", "typescript": "^7.0.2", "vite": "^8.2.2", "vitest": "^5.0.0", "@vitest/coverage-v8": "^5.0.0" }, "author": "Yusuf Ziya Civan (https://github.com/ziyacivan)", "exports": { ".": "./dist/index.js", "./config": "./dist/config.js", "./hub": "./dist/hub.js", "./launcher": "./dist/launcher.js", "./protocol/devcon": "./dist/protocol/devcon.js", "./protocol/rcon": "./dist/protocol/rcon.js", "./protocol/oob": "./dist/protocol/oob.js", "./protocol/server-log": "./dist/protocol/server-log.js", "./win/png": "./dist/win/png.js", "./win/win32": "./dist/win/win32.js", "./package.json": "./package.json" }, "sideEffects": false, "publishConfig": { "access": "public" }, "optionalDependencies": { "koffi": "^3.2.1" } }