Skip to content
agentgateway has joined the Agentic AI FoundationLearn more

For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.

Page as Markdown

MCP authorization

Verified Code examples on this page have been automatically tested and verified.

Define authorization rules for MCP method invocations using CEL expressions.

Attaches to:

Backend
(MCP Backends only)

Note

Agentgateway supports more than one configuration style. Where a feature can also be configured in the simplified llm or mcp modes, the examples on this page show each option in tabs. For more information, see Routing-based configuration.

The MCP authorizationAuthorization (AuthZ)The process of determining what actions an authenticated user or service is allowed to perform. Agentgateway supports HTTP authorization, MCP authorization, and external authorization services. policy works similarly to HTTP authorization, but runs in the context of an MCP request.

Note

This policy works only for MCP traffic. Note that all standard HTTP policies also apply to MCP traffic.

Instead of running against an HTTP request, MCP authorization policies run against specific MCP method invocations such as list_tools and call_tools.

If a tool or other resource is not allowed, the gateway automatically filters it from the list response, so unauthorized clients never see it.

You can attach mcpAuthorization at the route level or directly to an MCP backend. A backend-level policy applies to every MCP target in that backend. To vary the rules per target instead, keep one route-level policy and match on the mcp.tool.target variable, as shown in Different rules per target. For the other policies that you can scope to an individual target, see MCP target policies.

# yaml-language-server: $schema=https://agentgateway.dev/schema/config
mcp:
  port: 3000
  policies:
    mcpAuthorization:
      rules:
      # Allow anyone to call 'echo'
      - 'mcp.tool.name == "echo"'
      # Only the test-user can call 'add'
      - 'jwt.sub == "test-user" && mcp.tool.name == "add"'
      # Any authenticated user with the claim `nested.key == value` can access 'printEnv'
      - 'mcp.tool.name == "printEnv" && jwt.nested.key == "value"'
  targets:
  - name: everything
    stdio:
      cmd: npx
      args: ["@modelcontextprotocol/server-everything"]

Note

Try out CEL expressions in the built-in CEL playground in the agentgateway admin UI before using them in your configuration.

Role-based access with JWT claims

When you combine MCP authorization with MCP authentication, you can write rules that reference JWT claims. The following configuration restricts tools based on the authenticated user’s identity and role:

  • The MCP authentication policy validates JWTs against a local authorization server, such as Keycloak, running on port 9000.
  • Any authenticated user can call the echo tool.
  • Only the user test-user can call the add tool.
  • Only users with the nested claim nested.key == "value" can call the printEnv tool.
# yaml-language-server: $schema=https://agentgateway.dev/schema/config
mcp:
  port: 3000
  policies:
    mcpAuthentication:
      issuer: http://localhost:9000
      audiences:
      - http://localhost:3000/mcp
      jwks:
        url: http://localhost:9000/.well-known/jwks.json
      resourceMetadata:
        resource: http://localhost:3000/mcp
        scopesSupported:
        - read:all
        bearerMethodsSupported:
        - header
    mcpAuthorization:
      rules:
      # Any authenticated user can call 'echo'
      - 'mcp.tool.name == "echo"'
      # Only the test-user can call 'add'
      - 'jwt.sub == "test-user" && mcp.tool.name == "add"'
      # Claim-based access for 'printEnv'
      - 'mcp.tool.name == "printEnv" && jwt.nested.key == "value"'
  targets:
  - name: everything
    stdio:
      cmd: npx
      args: ["@modelcontextprotocol/server-everything"]

Different rules per target

When you multiplex several MCP servers behind a single agentgateway listener, you can apply different authorization rules to each target by matching on the mcp.tool.target variable in a single policy. In the following configuration:

  • Any user can access tools on the public-tools target.
  • Only users with admin in the JWT roles claim can access tools on the admin-tools target.
  • The JWT is validated against a local authorization server running on port 9000.
# yaml-language-server: $schema=https://agentgateway.dev/schema/config
mcp:
  port: 3000
  policies:
    cors:
      allowOrigins: ["*"]
      allowHeaders:
      - mcp-protocol-version
      - content-type
      - cache-control
    mcpAuthentication:
      mode: optional
      issuer: http://localhost:9000
      audiences:
      - http://localhost:3000/mcp
      jwks:
        url: http://localhost:9000/.well-known/jwks.json
      resourceMetadata:
        resource: http://localhost:3000/mcp
        scopesSupported:
        - read:all
        bearerMethodsSupported:
        - header
    mcpAuthorization:
      rules:
      # Allow anyone to access tools on the public-tools target
      - 'mcp.tool.target == "public-tools"'
      # Only authenticated admins can access tools on the admin-tools target
      - 'mcp.tool.target == "admin-tools" && has(jwt.sub) && "admin" in jwt.roles'
  targets:
  - name: public-tools
    stdio:
      cmd: npx
      args: ["@modelcontextprotocol/server-everything"]
  - name: admin-tools
    stdio:
      cmd: npx
      args: ["@mycompany/admin-server"]

CEL variables

The following MCP-specific CEL variables are available in authorization rules:

VariableTypeAvailabilityDescription
mcp.tool.namestringRequest-timeThe name of the tool being called.
mcp.tool.targetstringRequest-timeThe target backend handling the tool call.
mcp.tool.argumentsmapPost-requestThe JSON arguments passed to the tool call (access logs only).
mcp.tool.resultanyPost-requestThe tool call result payload (access logs only).
mcp.tool.erroranyPost-requestThe tool call error payload (access logs only).
mcp.prompt.namestringRequest-timeThe name of the prompt being accessed.
mcp.resource.namestringRequest-timeThe name of the resource being accessed.
mcp.methodNamestringPost-requestThe MCP JSON-RPC method name, such as tools/call.
mcp.sessionIdstringPost-requestThe MCP session ID.

Request-time variables are available during authorization and can be used in mcpAuthorization rules. Post-request variables are available in access log CEL expressions.

When you also configure MCP authentication, claims from the validated JWT are available to your rules as well:

VariableTypeAvailabilityDescription
jwt.substringRequest-timeThe sub (subject) claim from the JWT.
jwt.<claim>anyRequest-timeAny top-level or nested JWT claim, such as jwt.roles or jwt.nested.key.
has(jwt.<claim>)boolRequest-timeWhether a JWT claim is present.

Tool arguments are not available during authorization

mcp.tool.arguments is populated only after a tool call completes, so it cannot be referenced in mcpAuthorization rules. Base authorization decisions on mcp.tool.name and mcp.tool.target instead.

To inspect tool arguments, use an access log policy, which evaluates post-request:

frontendPolicies:
  accessLog:
    add:
      tool_args: 'mcp.tool.arguments'

See MCP observability for the full example, and the CEL reference for additional variables.

Was this page helpful?
Agentgateway assistant

Ask me anything about agentgateway configuration, features, or usage.

Note: AI-generated content might contain errors; please verify and test all returned information.

Tip: one topic per conversation gives the best results. Use the + button in the chat header to start a new conversation.

Switching topics? Starting a new conversation improves accuracy.
↑↓ navigate select esc dismiss

What could be improved?

Your feedback helps us improve assistant answers and identify docs gaps we should fix.

Need more help? Join us on Discord: https://discord.gg/y9efgEmppm

Want to use your own agent? Add the Solo MCP server to query our docs directly. Get started here: https://search.solo.io/.