Odel
OPA MCP

OPA MCP

Local
@orygnscode7TypeScriptMITUpdated 2 days ago

Author, validate, debug, and explain OPA Rego policies through any MCP-compatible client.

Runs locally over stdio

This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).

npm@orygn/opa-mcpv0.5.0

Run

npx -y @orygn/opa-mcp

MCP client config

{
  "mcpServers": {
    "opa-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@orygn/opa-mcp"
      ]
    }
  }
}
Dockerdocker.io/orygn/opa-mcp:0.5.0

Run

docker run -i --rm docker.io/orygn/opa-mcp:0.5.0

MCP client config

{
  "mcpServers": {
    "opa-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/orygn/opa-mcp:0.5.0"
      ]
    }
  }
}