Skip to main content

Overview

auth_type: "oauth" covers server-level OAuth: the admin authenticates once during MCP client setup, Bifrost stores the resulting token, and every subsequent request to that MCP server uses the same token regardless of which caller hit Bifrost. If you need each end-user to authenticate themselves (personal Notion workspace, personal GitHub repos, etc.), use Per-User OAuth instead. This auth type is only valid for HTTP and SSE connections. What Bifrost handles for you:
  • Automatic token refresh before expiration
  • PKCE for public clients (no client secret)
  • Dynamic Client Registration (RFC 7591)
  • OAuth discovery from server URLs (.well-known/oauth-authorization-server, .well-known/openid-configuration)
  • Secure token storage (encrypted at rest)

OAuth flow

Bifrost implements the Authorization Code flow:

Configuration

  1. Navigate to MCP Gateway and click New MCP Server
  2. Pick HTTP or SSE as the connection type, fill in the Connection URL
  3. Set Auth Type to OAuth 2.0
  4. Fill in the OAuth fields:
    • Client ID (optional — leave blank for Dynamic Client Registration)
    • Client Secret (optional — omit for PKCE public clients)
    • Authorize URL (optional — leave blank to use OAuth discovery)
    • Token URL (optional — same)
    • Scopes (comma-separated)
  5. Click Create — Bifrost runs the OAuth dance in a popup
  6. Sign in and authorize on the upstream provider
  7. The popup closes and the MCP client is persisted with the token
OAuth flow popup opened from the MCP client creation step, landing on the upstream provider's consent screen
By default this connection is per-call (a fresh connection and credential resolution per tool call, no shared upstream connection to keep alive) — see Session Stickiness to make it sticky instead.

PKCE for public clients

For applications without a client secret, omit client_secret and Bifrost will automatically generate PKCE code verifiers:

Dynamic Client Registration (RFC 7591)

If your OAuth provider supports DCR, omit client_id and client_secret and provide a registration_url (or just a server_url for discovery):
Bifrost will:
  1. Discover OAuth endpoints from server_url (if needed)
  2. Send the OAuth resource indicator during authorization and token exchange only when resource is provided.
  3. Register a new client via registration_url
  4. Continue with the standard authorize / token exchange flow
The redirect_uri Bifrost registers with the upstream provider is locked to Bifrost’s current public URL (mcp_external_client_url, or the request Host header if unset). If you change Bifrost’s public URL later, the upstream provider will reject the next authorize call with “Invalid redirect URI”. Reauthorization reuses the registered client, so it cannot fix the mismatch on its own: delete the client and recreate it so Bifrost re-runs DCR against the new URL. (For manually registered credentials, add the new redirect URI in the provider’s dashboard instead, then reauthorize.)

OAuth discovery

If only client_id and server_url are provided, Bifrost will probe in order:
  1. <server_url>/.well-known/oauth-authorization-server (RFC 8414)
  2. <server_url>/.well-known/openid-configuration
  3. MCP server metadata returned by the server itself

Token management

Status

Status values:
  • pending — admin hasn’t authorized yet
  • authorized — token is valid and active
  • failed — authorization failed or token is invalid
  • revoked — the token was revoked (via DELETE); the config row is retained with no live token
When a stored token permanently dies later (refresh rejected, provider-side revocation), the status flips on the token row, not on the OAuth config: the token moves to needs_reauth and the MCP client’s connection state shows needs_reauth. The OAuth config itself stays authorized.

Automatic refresh

Bifrost refreshes access tokens automatically using the stored refresh token, in two layers:
  • In the background — a worker periodically refreshes tokens that are about to expire, so active clients always have a valid token ready.
  • On use — if a token is already expired when a request needs it, Bifrost refreshes it inline before forwarding the request.
Background refresh only runs while the MCP client is enabled. Disabling a client pauses it; on re-enable, the token is refreshed on first use. If a client stays disabled long enough for the provider to expire the idle refresh token, reauthorization is required. Transient refresh failures (network blips, provider hiccups) keep retrying silently. Only a permanent rejection (the provider refuses the refresh token outright) flips the token to needs_reauth. A successful background refresh doesn’t just update the stored token: for shared clients it immediately recycles the live connection so it starts using the fresh credential. The recycle is make-before-break for HTTP and SSE clients, so the connection keeps serving tool calls throughout, and token expiry normally passes with zero failed calls. In a multi-node deployment, only the node that performed the refresh recycles its own connection; the other nodes’ connections heal on their next auth failure via the retry described in Auth failure recovery.
Some providers only issue a refresh token when you explicitly ask for one. Google is the canonical case: without access_type=offline&prompt=consent on the authorize URL, the grant contains only an access token, and the client lands in needs_reauth at every token expiry (roughly hourly for Google). Bifrost preserves any query parameters already present on the configured authorize_url, so append the provider’s offline-access parameters there, e.g. "authorize_url": "https://accounts.google.com/o/oauth2/v2/auth?access_type=offline&prompt=consent".

Rotation

PUT /api/mcp/client/{id} accepts an oauth_config block for clients with auth_type oauth or per_user_oauth (400 for any other auth type). Any field can be rotated: client_id, client_secret, authorize_url, token_url, registration_url, resource, scopes. Rotation applies the changed fields in place on the same OAuth config row; it does not create a new row and does not re-run discovery or client registration.
Semantics:
  • Unset fields preserve stored values. client_id / client_secret follow the SecretVar masked-placeholder convention (sending back the redacted value from a GET means “keep”); the other fields treat empty as “not provided”.
  • Any actual change cascades. Every token bound to that OAuth config flips to needs_reauth, regardless of auth mode: the shared connection token, every per-user token, and the retained admin discovery credential alike. Shared clients surface it on the next reconnect; per-user callers get the standard reauth URL on their next tool call.
  • A no-op round-trip is safe. Re-sending the stored values does not cascade anything.
  • Cannot run while the client is (or is being) disabled (400; enable the client first, or send the enable and rotation as separate requests).
The same rotation applies to config.json-declared clients: editing the oauth_config block of an already-authorized client rotates the stored config at the next boot and cascades needs_reauth, with a boot warning that existing sessions must re-authenticate.
Rotating client_id or client_secret immediately signs out every current session on the MCP client, shared and per-user alike. Everyone re-authenticates against the new credentials; for the shared connection itself, that means clicking Reauthorize (below).

Reauthorization

A shared OAuth client whose credential permanently dies lands in the needs_reauth connection state: the client was authorized and connected at least once, but the token can no longer be refreshed (provider-side revocation, expired refresh token, or a credential rotation). This is distinct from pending_verification, which means initial setup never completed. needs_reauth is sticky: the health monitor and enable/disable toggles will not flip the client back to healthy or unstable, and the Reconnect action is disabled for it (reconnecting cannot help when the credential itself is dead). Only a human redoing consent clears it. From the dashboard, open the client and click Reauthorize: Bifrost redoes the OAuth consent flow in a popup against the currently stored credentials, and on completion reconnects the client.
MCP client sheet showing the red needs_reauth badge and the Reauthorize button
The same flow is scriptable via POST /api/mcp/client/{id}/reauthorize ({id} = MCP client ID):
The response is the same pending_oauth payload the create flow returns (oauth_config_id, authorize_url, expires_at, complete_url, status_url, next_steps): open authorize_url in a browser, poll status_url until authorized, then POST complete_url. On completion the client reconnects and the response reads "MCP client re-authorized and reconnected successfully". Error cases: 400 if the client’s auth_type is not OAuth-based, or if it never completed initial authorization (use initiate-verification instead); 404 for an unknown ID; 503 when no OAuth provider is configured. For per_user_oauth clients the endpoint repairs the retained admin discovery credential instead, and is gated accordingly; see Per-User OAuth.

Revoke

This deletes the stored token from Bifrost and marks the OAuth configuration revoked (the config row is kept, not deleted). Bifrost does not call the upstream provider’s revocation endpoint — revoke at the provider’s dashboard if you need the upstream token invalidated there.

Provider snippets

GitHub

Google


Public URL configuration

The redirect_uri Bifrost registers and the consent URLs it builds are derived from the request Host header by default. Behind a reverse proxy, override them with:
  • mcp_external_client_url — public base URL Bifrost uses both for the consent pages it surfaces and as the redirect_uri registered with upstream providers
See Reverse Proxy configuration → for the full reference.
Changing mcp_external_client_url after an upstream provider has been registered breaks already-authorized clients. Upstream providers lock the redirect_uri to whatever was registered during DCR. To recover, delete and recreate the affected client so Bifrost re-registers with the new URL (reauthorization alone reuses the registered client and cannot fix the mismatch). For manually registered credentials, add the new redirect URI at the provider’s dashboard, then reauthorize.

Troubleshooting

  • Ensure auth_type is exactly "oauth"
  • Confirm oauth_config is on the request body
  • Provide authorize_url or a server_url Bifrost can discover from
  • Check that the refresh token is still valid (some providers expire refresh tokens after long idle)
  • If the client was disabled for a long stretch, background refresh was paused for it — the refresh token may have expired at the provider in the meantime
  • If the provider never issued a refresh token at all, the client will hit this at every access-token expiry; append the provider’s offline-access parameters to authorize_url (see the warning under Automatic refresh)
  • Verify scopes are still sufficient
  • Re-authorize: click Reauthorize on the client (or POST /api/mcp/client/{id}/reauthorize); see Reauthorization
  • Confirm Bifrost is reachable at the registered redirect URI (DNS, firewall, reverse-proxy headers)
  • Check mcp_external_client_url matches what was registered upstream
  • Look at Bifrost logs for oauth errors
You changed Bifrost’s public URL after the upstream client was registered. Delete and recreate the client so Bifrost re-runs DCR with the new URL; for manually registered credentials, add the new redirect URI at the provider’s dashboard and then reauthorize.

API reference


Security notes

  • Tokens are stored encrypted at rest (set BIFROST_ENCRYPTION_KEY)
  • PKCE is enforced automatically for public clients
  • The OAuth state parameter is verified server-side for CSRF protection
  • Use HTTPS — most upstream providers refuse HTTP redirect URIs in production
  • Request only the scopes your tools need

Next Steps

  • Per-User OAuth — when each user should authenticate themselves
  • Headers — when there’s no OAuth, just a static key
  • MCP Sessions — per-user credential lifecycle (does not surface server-level OAuth)