{ "name": "@orygn/opa-mcp", "version": "0.6.0", "mcpName": "io.github.OrygnsCode/opa-mcp", "description": "Model Context Protocol server for Open Policy Agent (OPA). Author, validate, debug, and explain Rego policies through any MCP-compatible client.", "type": "module", "license": "MIT", "author": { "name": "Daniel Okwor", "email": "daniel@orygn.tech", "url": "https://orygn.tech" }, "repository": { "type": "git", "url": "git+https://github.com/OrygnsCode/opa-mcp-server.git" }, "homepage": "https://orygn.tech/products/opa-mcp", "bugs": { "url": "https://github.com/OrygnsCode/opa-mcp-server/issues" }, "keywords": [ "mcp", "model-context-protocol", "opa", "open-policy-agent", "rego", "policy", "policy-as-code", "authorization", "kubernetes", "claude", "cursor", "ai-agents", "llm" ], "bin": { "opa-mcp": "./dist/server.js" }, "main": "./dist/server.js", "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=20.0.0" }, "scripts": { "build": "tsc -p tsconfig.build.json", "dev": "tsx watch src/server.ts", "start": "node dist/server.js", "typecheck": "tsc --noEmit", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --config vitest.coverage.config.ts --coverage", "test:integration": "vitest run --config vitest.integration.config.ts", "verify:fuzz": "node scripts/verify-soundness-fuzz.mjs", "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build", "clean": "rimraf dist coverage .vitest-cache", "bundle:fetch": "node scripts/fetch-opa-binaries.mjs", "bundle:sync": "node scripts/sync-versions.mjs" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "z3-solver": "^5.0.0", "zod": "^3.23.0" }, "optionalDependencies": { "@orygn/opa-mcp-linux-x64": "0.3.0", "@orygn/opa-mcp-linux-arm64": "0.3.0", "@orygn/opa-mcp-darwin-x64": "0.3.0", "@orygn/opa-mcp-darwin-arm64": "0.3.0", "@orygn/opa-mcp-win32-x64": "0.3.0" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^26.0.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "@vitest/coverage-v8": "^4.1.5", "eslint": "^10.4.0", "eslint-config-prettier": "^10.1.8", "globals": "^17.6.0", "prettier": "^3.3.0", "rimraf": "^6.0.0", "tsx": "^4.19.0", "typescript": "^6.0.3", "vitest": "^4.1.5" }, "publishConfig": { "access": "public", "provenance": true }, "overrides": { "hono": ">=4.12.27" } }