
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@authzx/mcp-gateway
Advanced tools
AuthzX MCP Gateway — policy-enforcing proxy between AI agents and MCP servers
Authorization gateway for AI agents and MCP tool calls.
Open-source. Drop-in. Works with any MCP client.
AI agents connected to MCP servers can call any tool they have access to — read your database, delete files, execute arbitrary SQL. AuthzX MCP Gateway puts a policy enforcement point between the agent and those tools, so every call is authorized before it executes.
{"ts":"2026-05-25T10:03:11.482Z","level":"info","msg":"mcp_tool_call","subject":"agent:ai-assistant","tool":"database__query","allowed":true,"latency_ms":0.8}
go install github.com/authzx/agent/cmd/agent@latest
authzx-agent --policy ./policy.rego
Create a policy.rego to define what your agent can do:
package authzx.mcp
default allow := false
# Allow read-only tools
allow if { input.resource.name == "database__query" }
allow if { input.resource.name == "database__list_tables" }
# Allow writes, but block destructive SQL
allow if {
input.resource.name == "database__execute"
not contains(lower(input.resource.attributes.sql), "drop")
not contains(lower(input.resource.attributes.sql), "delete from")
}
See demo/policies/ for more examples including Kubernetes namespace protection.
gateway.config.json:{
"authzx": {
"agentUrl": "http://localhost:8181"
},
"subject": "agent:ai-assistant",
"servers": {
"database": {
"command": "node",
"args": ["./my-database-mcp-server.js"]
}
}
}
claude mcp add --transport stdio authzx-gateway -- \
npx authzx-mcp-gateway --config /path/to/gateway.config.json
| Field | Type | Required | Description |
|---|---|---|---|
authzx.agentUrl | string | * | URL of local AuthzX Agent (local mode) |
authzx.cloudUrl | string | * | URL of AuthzX Cloud API (cloud mode) |
authzx.apiKey | string | API key from AuthzX Cloud (or set AUTHZX_API_KEY env var) | |
authzx.timeoutMs | number | Authorization request timeout (default: 5000) | |
subject | string | yes | Identity of the agent making tool calls |
subjectType | string | Subject type (default: "agent") | |
resourceType | string | Resource type for authorization checks (default: "mcp_tool") | |
servers | object | yes | Map of downstream MCP servers to proxy |
* Provide either agentUrl (local mode) or cloudUrl (cloud mode).
Each entry in servers has:
| Field | Type | Required | Description |
|---|---|---|---|
command | string | yes | Command to spawn the MCP server |
args | string[] | Command arguments | |
env | object | Additional environment variables |
Connect to AuthzX Cloud for managed policies:
{
"authzx": {
"cloudUrl": "https://api.authzx.com/v1/authorize",
"apiKey": "azx_..."
},
"subject": "agent:prod-assistant",
"servers": {
"database": {
"command": "node",
"args": ["./db-server.js"]
}
}
}
Run the AuthzX Agent locally with a .rego policy file for offline, self-contained authorization:
# Start the agent with your policy
authzx-agent --policy ./policy.rego
{
"authzx": {
"agentUrl": "http://localhost:8181"
},
"subject": "agent:dev-assistant",
"servers": {
"database": {
"command": "node",
"args": ["./db-server.js"]
}
}
}
| Flag | Description |
|---|---|
--config <path> | Path to gateway config file (default: ./gateway.config.json) |
--list-tools | List all tools from configured downstream servers and exit |
--generate-policy [path] | Generate a starter .rego policy file for the configured tools (default: policy.rego) |
Environment variable overrides: AUTHZX_API_KEY, AUTHZX_AGENT_URL, AUTHZX_SUBJECT.
The gateway runs as a stdio MCP server. Point your MCP client at it instead of the downstream server directly.
claude mcp add --transport stdio authzx-gateway -- \
npx authzx-mcp-gateway --config /path/to/gateway.config.json
Add to .cursor/mcp.json:
{
"mcpServers": {
"authzx-gateway": {
"command": "npx",
"args": ["authzx-mcp-gateway", "--config", "/path/to/gateway.config.json"]
}
}
}
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"authzx-gateway": {
"command": "npx",
"args": ["authzx-mcp-gateway", "--config", "/path/to/gateway.config.json"]
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"authzx-gateway": {
"type": "stdio",
"command": "npx",
"args": ["authzx-mcp-gateway", "--config", "/path/to/gateway.config.json"]
}
}
}
See demo/ for full end-to-end examples with sample policies.
Apache-2.0 — see LICENSE.
FAQs
AuthzX MCP Gateway — policy-enforcing proxy between AI agents and MCP servers
We found that @authzx/mcp-gateway demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.