AttestoMCP

Hex.pmHexdocs.pmElixir CILicense: MITElixir

OAuth resource-server helpers for HTTP MCP servers in Plug/Phoenix: protect the MCP endpoint, publish OAuth discovery metadata, verify Bearer/DPoP/mTLS access tokens, enforce scopes, and hand the verified identity to the server implementation.

For a new Attesto-native MCP server, start with attesto_mcp_server. It is the complete Apache-2.0 server built on this package, with MCP 2026-07-28 plus 2025-11-25/2025-06-18 compatibility over Streamable HTTP and stdio, an opinionated Attesto authorization boundary, and an Igniter installer for Phoenix hosts.

Why use this

An MCP server library gives you tools, prompts, resources, and transport lifecycle. OAuth still leaves several resource-server chores at the HTTP boundary:

attesto_mcp packages that glue as Plug modules. Most applications should use them through attesto_mcp_server. Use this package directly when adapting an existing MCP transport or building a deliberately custom server boundary. The host still owns application authorization policy in either case.

Verification delegates to attesto, the same engine behind an OpenID Certified authorization server, including its certified FAPI 2.0 Security Profile and Message Signing profiles. Certification covers the OpenID Provider role rather than a resource server, but the JWT, JWKS, DPoP, mTLS, and audience handling used at this boundary is the same engine exercised by those suites.

MCP authorization and metadata

The MCP authorization spec treats a protected HTTP MCP server as an OAuth resource server. Clients discover authorization information through OAuth Protected Resource Metadata (RFC 9728), then use Authorization Server Metadata (RFC 8414) for issuer endpoints.

This package provides builders for:

It intentionally avoids a hard dependency on a specific Elixir MCP SDK. The recommended attesto_mcp_server consumes the public boundary directly; the core remains a normal Plug boundary for custom and existing integrations.

How clients identify themselves

None of this is the resource server's concern — how a client obtains a token is settled between it and the authorization server, and attesto_mcp only validates what arrives. It matters when choosing what to enable on the authorization server, so it is worth stating which way the spec has moved.

The MCP authorization spec now prefers Client ID Metadata Documents (CIMD): the client uses an HTTPS URL as its client_id, and the authorization server dereferences that URL to a JSON metadata document. There is no registration request and no per-client state on the server. Dynamic client registration (RFC 7591) is deprecated in favour of it.

attesto_phoenix implements both. CIMD is off by default and enabled through its :client_id_metadata configuration; the registration endpoint is likewise opt-in. A CIMD client is always public (none + PKCE) or private_key_jwt — it can never carry a shared secret — and installed applications are supported through the document's own RFC 8252 §7.3 loopback redirect URIs.

The token this server validates is the same either way, so no attesto_mcp wiring changes with that choice.

Per-resource audience confinement (RFC 8707 + RFC 9728)

A protected resource advertises its own identifier as the RFC 9728 metadata resource; a spec-correct client echoes that identifier back as the RFC 8707 resource parameter at the token endpoint, and the authorization server mints the token's aud to it (see attesto/attesto_phoenix). The resource server's job is the last link: validate that the presented token's aud is this resource, so a token minted for a sibling endpoint cannot be replayed here.

ProtectResource / Plug.Authenticate enforce that with resource_audience:

plug AttestoMCP.Plug.ProtectResource,
config: &MyApp.Attesto.config/0,
resource: "/mcp",
base_url: "https://mcp.example.com", # pin the origin behind a proxy
resource_audience: :resource, # validate aud == this resource's identifier
scopes: [AttestoMCP.Scopes.tools_call()]

resource_audience: :resource validates the token's aud against this endpoint's identifier (base_url + resource path) instead of the host's global config.audience. A scalar audience must equal that identifier; for an array-valued aud, every member must equal it, so a token cannot add a sibling audience and remain valid. That identifier is computed by the same AttestoMCP.Metadata.resource_identifier/3 that produces the advertised metadata resource, so the chain — metadata.resource == requested resource == minted aud == validated aud — holds by construction. You can also pass a literal string or a (conn -> uri) / {m, f} callback.

Audience callbacks must return a valid identifier. A nil or malformed result fails authentication; it never disables route confinement for that request.

resource_audience and Attesto core's trusted_audiences option are mutually exclusive. Choose the route-derived convenience option or supply the complete core policy directly; configuring both raises during plug initialization so neither policy can silently replace the other.

Pin the origin with :base_url when you enable this behind a TLS-terminating proxy: the identifier is otherwise derived from the live request origin (Host / forwarded headers), which an attacker could spoof to a sibling resource's identifier. resource_audience is opt-in so existing single-audience deployments are unaffected; enabling it (with a pinned origin) is the recommended wiring for any server that fronts more than one MCP resource.

What this package is not

attesto_mcp does not implement MCP, JSON-RPC, tools, prompts, resources, transports, or server lifecycle. It wraps the HTTP endpoint your MCP server implementation exposes and connects that endpoint to Attesto's OAuth/OIDC token verification, DPoP proof verification, mTLS certificate binding, scope algebra, and metadata builders.

attesto is the protocol engine: JWT access tokens, DPoP, mTLS, PKCE, JWKS, discovery, and scopes. attesto_mcp reuses those checks and adds the MCP-facing Plug boundary consumed by attesto_mcp_server and custom integrations.

attesto_phoenix is the Phoenix/Ecto authorization-server layer: routes, controllers, client registration and CIMD, stores, and Phoenix-friendly configuration. MCP servers that need clients to identify themselves without prior registration should expose CIMD — or, for the deprecated path, RFC 7591 registration — through the authorization server layer rather than duplicate either here.

Installation

def deps do
[
{:attesto_mcp, "~> 1.2"}
]
end

For Phoenix apps, the optional Igniter installer can scaffold the protected resource metadata route and protecting pipeline:

mix attesto_mcp.install --resource-path /mcp --scopes mcp:tools:call

The installer emits the public attesto_mcp_protected_resource_metadata/2 macro with root: false and generates protection with the same path/scopes plus resource_audience: :resource. Re-running the same resource is a no-op; installing another resource adds another path-inserted metadata document but never an ambiguous shared root. If a legacy client needs the unsuffixed root, change exactly one declaration to root: true explicitly.

For a fuller Phoenix wiring example, see the MCP wiring guide.

Minimal Plug/Phoenix usage

Protect the mounted MCP endpoint before forwarding to whichever MCP server plug you use:

pipeline :mcp_auth do
plug AttestoMCP.Plug.Authenticate,
config: &MyApp.Attesto.config/0,
htu: fn _conn -> "https://mcp.example.com/mcp" end,
replay_check: &MyApp.DPoPReplay.check_and_record/2,
resource_path: "/mcp",
principal: fn claims, sender ->
MyApp.Principals.from_token(claims, sender)
end
plug AttestoMCP.Plug.RequireScopes,
scopes: [AttestoMCP.Scopes.tools_call()]
end
scope "/" do
pipe_through [:mcp_auth]
forward "/mcp", to: MyApp.MCPServerPlug
end

AttestoMCP.Plug.ProtectResource composes the two plugs above — authenticate, then require scopes — into one correctly-ordered, halt-respecting plug, so a route declares both in a single line and both render through the same error envelope and resource_metadata challenge:

plug AttestoMCP.Plug.ProtectResource,
config: &MyApp.Attesto.config/0,
replay_check: &MyApp.DPoPReplay.check_and_record/2,
resource: "/mcp",
base_url: "https://mcp.example.com",
resource_audience: :resource,
scopes: [AttestoMCP.Scopes.tools_call()]

When one MCP endpoint serves methods with different scope requirements, use the same boundary in two explicit phases. Authenticate before inspecting the bounded request envelope, derive the required scopes from the classified MCP method, then authorize before dispatch:

protection =
AttestoMCP.Plug.ProtectResource.prepare(
config: &MyApp.Attesto.config/0,
replay_check: &MyApp.DPoPReplay.check_and_record/2,
resource: "/mcp",
resource_audience: :resource
)
conn = AttestoMCP.Plug.ProtectResource.authenticate(conn, protection)
if conn.halted do
conn
else
scopes = MyApp.MCPScopes.for_method(classify_bounded_method(conn))
conn = AttestoMCP.Plug.ProtectResource.authorize(conn, protection, scopes)
if conn.halted, do: conn, else: MyApp.MCPServerPlug.call(conn, [])
end

This verifies the token and any sender constraint once. authorize/3 uses the verified Attesto assigns and an empty scope list means authenticated access, not public access. Calling a prepared boundary through the ordinary Plug call/2 entry point raises instead of dispatching without authorization.

After authentication, downstream code can read:

For mTLS-bound access tokens, supply certificate context from your TLS layer:

plug AttestoMCP.Plug.Authenticate,
config: &MyApp.Attesto.config/0,
cert_der: fn conn ->
MyApp.TLS.client_certificate_der(conn)
end

The callback must return the DER-encoded certificate that the TLS layer already authenticated, or nil when no certificate was presented.

Metadata

The installer mounts the standard metadata routes for a resource path. When building metadata directly, serve protected-resource metadata from the well-known location derived from your MCP resource identifier:

metadata =
AttestoMCP.Metadata.protected_resource(conn, "/mcp",
authorization_servers: ["https://auth.example.com"],
resource_name: "Example MCP server",
scopes_supported: AttestoMCP.Scopes.all(),
tls_client_certificate_bound_access_tokens: true
)

Authorization-server metadata belongs at the issuer:

AttestoMCP.Metadata.authorization_server(config,
authorization_endpoint: "https://auth.example.com/oauth/authorize",
token_endpoint_auth_methods_supported: ["client_secret_basic", "private_key_jwt"],
registration_endpoint: "https://auth.example.com/oauth/register"
)

How discovery actually happens: a client hits the resource URL, gets a 401 whose WWW-Authenticate challenge carries a resource_metadata pointer (RFC 9728 §5.1) — and modern MCP clients also (often first) derive the §3.1 path-inserted well-known URI from the resource URL itself (https://host.example/mcp/.well-known/oauth-protected-resource/mcp). The path-inserted form must serve a document whose resource member equals the identifier the URI was derived from (§3.3). A single-resource router can also mount the unsuffixed compatibility document; a multi-resource router must either omit it or assign it explicitly, never by declaration order. For a combined AS+RS app that already mounts attesto_phoenix's attesto_routes (which serves the root document), give each PRM route exactly one owner: single-resource hosts can use attesto_routes(protected_resource_paths: ["/mcp"]) instead of this macro, and hosts using this macro alongside attesto_routes should pass root: false here or protected_resource_root: false there.

For the complete combined-host pattern—one authorization-server route set, class-specific OAuth pipelines, two MCP metadata declarations, matching audience-confined protection, and both RFC 8707 allowed resource identifiers— see the MCP wiring guide.

Client onboarding belongs to the authorization server, not here. With attesto_phoenix that means enabling CIMD (:client_id_metadata) for the preferred path, and its registration route and callbacks if you still need RFC 7591 — see How clients identify themselves. Only advertise registration response fields such as client_secret_expires_at, registration_access_token, and registration_client_uri if the authorization server implementation returns and persists them correctly.

Scope conventions

The package ships common MCP-style scope strings as conventions:

Server-specific prefixes are available:

AttestoMCP.Scopes.server("search", :tools_call)
# "search:mcp:tools:call"

These helpers are not policy. The authorization server decides what to issue and each MCP route decides what to require.

DPoP nonce and replay

DPoP proof replay protection is required for protected-resource requests. Pass a shared :replay_check callback, such as an ETS store for a single node or a database-backed store for clustered deployments. Without that callback, DPoP requests fail closed through Attesto unless you explicitly acknowledge the risk with Attesto's lower-level option.

If the server requires DPoP nonces, also pass :nonce_check and :nonce_issue. Nonce failures produce use_dpop_nonce with a fresh DPoP-Nonce header so the client can retry.

Optional Anubis compatibility

New Attesto-native servers should use attesto_mcp_server. Existing Anubis applications can instead retain their transport and use the optional AttestoMCP.Anubis bridge. The dependency and bridge are compile-guarded, so other consumers do not pull Anubis into their runtime closure.

Protect the HTTP endpoint with AttestoMCP.Plug.ProtectResource, leave the transport's separate authorization validator disabled, and project the already verified context into its frame:

pipeline :mcp_auth do
plug AttestoMCP.Plug.ProtectResource,
config: &MyApp.Attesto.config/0,
replay_check: &MyApp.DPoPReplay.check_and_record/2,
resource: "/mcp",
scopes: [AttestoMCP.Scopes.tools_call()]
end
def handle_request(request, frame) do
frame = AttestoMCP.Anubis.put_auth(frame)
# The frame now carries the verified subject, scopes, and claims.
end

The package also retains two optional infrastructure adapters for established Anubis deployments:

See those modules for their complete operational contracts. They are compatibility integrations, not prerequisites for attesto_mcp or attesto_mcp_server.

Security notes

Development

mix deps.get
mix format --check-formatted
mix credo --strict
mix test
mix docs

License

MIT. See LICENSE.