Skip to main content

MCP OAuth and credentials

Authenticate configured MCP servers without placing credentials in URLs or model-visible tool arguments. This page covers authentication profiles, OAuth login, credential storage, and rotation. For tool behavior, see the MCP client guide.

The available profile modes are none, static_bearer, and oauth.

Availability

Global MCP authentication profiles are supported by mecated, mecatequi, mecak8s, and mecatui's embedded server. They are operator configuration, not project configuration. A project .mecatl/settings.yaml cannot install or weaken an MCP credential profile.

These direct and global profiles are separate from session-scoped ToolHive broker authorization. When a broker tool returns authorization.required, use the TypeScript SDK continuation workflow instead of the host-local commands on this page.

A server configured with --mcp-server name=URL can also use the legacy MCP_<NAME>_TOKEN bearer-token convention. Use operator mcp.servers profiles for OAuth, rotation, or deployment-managed credentials.

Add a direct MCP profile

Use mecated mcp add for the standard direct streaming-HTTP setup. The command discovers the OAuth issuer, creates the profile, selects local credential custody, opens browser authorization, and verifies the MCP connection.

Before you begin, run the command on an attended host that can open a browser. Supply the exact HTTPS MCP resource URL, including its path. The URL must not contain a query string or fragment.

mecated mcp add connector https://mcp.example.com/mcp

The command writes these locations by default:

  • Settings: $XDG_CONFIG_HOME/mecatl/settings.yaml, or $HOME/.config/mecatl/settings.yaml when XDG_CONFIG_HOME is unset.
  • Encrypted credentials and custody metadata: $XDG_STATE_HOME/mecatl/mcp-credentials, or $HOME/.local/state/mecatl/mcp-credentials when XDG_STATE_HOME is unset.
  • Wrapping key with file custody: $XDG_CONFIG_HOME/mecatl/mcp-credential-key, or $HOME/.config/mecatl/mcp-credential-key when XDG_CONFIG_HOME is unset.

By default, --credential-store=auto prefers the OS keyring. On Linux, it checks for Secret Service. If Secret Service is unavailable and stdin is a TTY, the command asks before using the protected key file. Without a TTY, automatic selection stops and tells you to choose file custody explicitly:

mecated mcp add connector https://mcp.example.com/mcp --credential-store=file

Use --file to write a different operator settings document:

mecated mcp add connector https://mcp.example.com/mcp \
--file /etc/mecatl/settings.yaml

When --file selects a path other than the default settings path, add and remove refuse the change if the default settings file also contains an mcp: section. This check prevents that default source from shadowing the selected write target.

The profile and credential custody are saved before browser authorization. If a later authorization or connection check fails, recover with mcp login instead of rerunning mcp add:

mecated mcp login connector

If you added the profile to another settings file, select the same file during recovery:

mecated mcp login connector --file /etc/mecatl/settings.yaml

Restart a running daemon after onboarding. Verify that the mcp__connector__* tools appear.

Inspect and remove direct MCP profiles

List configured profiles without contacting an MCP server or starting browser authorization:

mecated mcp list
mecated mcp list --file /etc/mecatl/settings.yaml

Each row identifies the configured source and a non-presenting credential status. Changes apply to newly started daemons.

Remove a profile from the default settings file with:

mecated mcp remove connector

To use another settings file, run:

mecated mcp remove connector --file /etc/mecatl/settings.yaml

Removal deletes the current local grant and records a durable removal state before removing the settings profile. It does not revoke an upstream OAuth client or remove a shared wrapping key.

Configure a profile manually

Hand-authored profiles use the sequence-based mcp.servers schema, with OAuth fields nested under auth.oauth. The following preregistered-client example uses legacy key_env custody:

mcp:
mode: global
servers:
- name: github
url: https://mcp.example.com/github
auth:
mode: oauth
oauth:
profile: github
principal: local-user
issuer: https://id.example.com
client:
mode: preregistered
preregistered:
id: mecatl
secret_env: MECATL_MCP_CLIENT_SECRET
scopes: [repo]
request_refresh_token: true
credentials:
mode: local
local:
root: /home/operator/.local/state/mecatl/github-oauth-credentials
key_env: MECATL_MCP_CREDENTIAL_KEY
network:
additional_origins: []
private_origins: []
max_redirects: 0

key_env is the legacy custody option for manually managed profiles. It names an environment variable containing a canonical base64-encoded 32-byte wrapping key. In contrast, mecated mcp add generates the key and records native keyring or protected-file custody in the profile. Do not add key_env to a profile created by mcp add.

For a hand-authored key_env profile, generate and export the wrapping key outside YAML:

umask 077
mkdir -p "$HOME/.local/state/mecatl"
openssl rand -base64 32 > "$HOME/.local/state/mecatl/mcp-oauth.key"
chmod 600 "$HOME/.local/state/mecatl/mcp-oauth.key"
export MECATL_MCP_CREDENTIAL_KEY="$(cat "$HOME/.local/state/mecatl/mcp-oauth.key")"

Keep settings files owner-only. Do not put a wrapping key, client secret, access token, or refresh token in source control, a command argument, settings.yaml, or a prompt. Validate hand-authored settings before serving:

mecated config validate --file "$HOME/.config/mecatl/settings.yaml"

See the configuration reference for the full schema.

Log in to an existing profile

Authorize a mutable local profile explicitly with:

mecated mcp login github
mecated mcp login github --no-browser

The normal command opens a browser. --no-browser prints the authorization URL for use in another browser. Use either --file for one settings document or the deprecated repeatable --permission-config selector for trusted operator settings files. The selectors are mutually exclusive:

mecated mcp login github --file /etc/mecatl/settings.yaml
mecated mcp login github \
--permission-config /etc/mecatl/settings.yaml

After login, restart the server and verify that the namespaced mcp__github__* tools appear. Mecatl restores the encrypted credential and refreshes tokens when needed. Preregistered and CIMD profiles persist refresh-token rotation in the local store so the next restart remains warm.

Direct dynamic client registration

A named direct/global profile can use client: {mode: dcr, dcr: {}} when no client was preregistered. It requires exact scopes: [openid] (or omission), request_refresh_token: false (or omission), and a mutable local credential store:

mcp:
mode: global
servers:
- name: connector
url: https://mcp.example.com/gw/mcp
auth:
mode: oauth
oauth:
profile: connector
principal: local-user
issuer: https://id.example.com
client: {mode: dcr, dcr: {}}
scopes: [openid]
request_refresh_token: false
credentials:
mode: local
local:
root: /absolute/owner-only/credentials
key_env: MECATL_MCP_CREDENTIAL_KEY
network: {additional_origins: [], private_origins: [], max_redirects: 0}

Login dynamically registers a public client and then uses the same browser/PKCE flow. The durable registration and generation-bound access grant are separate; no client secret or refresh token is requested or accepted.

Ordinary startup reuses the unexpired grant and never launches a browser. On expiry it returns login-required without attempting refresh. Run mecated mcp login SERVER explicitly to obtain a new access grant while reusing the valid registration. If registration itself was interrupted, use --retry-dcr-registration; to deliberately replace a valid ready registration and its grant, use --reset-dcr-registration. The flags are mutually exclusive and valid only for DCR. Ready identity drift is reset-required and may be replaced with --reset-dcr-registration. Pending identity drift is reported as pending-identity-mismatch; it cannot reset or retry until the matching profile, principal, canonical resource, and exact issuer configuration is restored, after which use --retry-dcr-registration. Corrupt, noncanonical, unsupported, or grant-mismatched persisted state remains repair-only: neither flag mutates it. The flags do not revoke an upstream registration. Complete public-client refresh remains deferred to issue #1355.

Manual local-mecatui qualification

Run this live procedure only with explicit authorization and an isolated owner-only config and credential root. Do not paste command output into an issue or PR.

  1. Configure the DCR profile above and export its 32-byte padded-base64 credential key.
  2. Run mecated mcp login connector; record whether explicit consent appeared, but never record the URL, code, state, registration response, client ID, or token.
  3. Start local mecatui with the same settings and key. Invoke only one harmless discovered read-only tool and record its name and safe success category.
  4. Restart mecatui before access-token expiry and invoke the same tool without another login.
  5. After expiry, reconnect and confirm login-required, no refresh request, and no browser launch.
  6. Run mecated mcp login connector explicitly, confirm registration reuse, restart mecatui, and invoke the same harmless tool once more.

Record only:

canonical_resource: <origin/path, no query>
issuer_origin: <origin only>
explicit_consent: true|false
harmless_tool_name: <name only>
initial_result: success|failure:<safe-category>
restart_reuse_before_expiry: true|false
expiry_result: login-required|failure:<safe-category>
refresh_attempted: false
browser_launched_on_startup_or_expiry: false
explicit_relogin_reused_registration: true|false
relogin_result: success|failure:<safe-category>

Exclude OAuth and registration secrets, authorization URLs, callback values, raw provider errors, headers, credential-store contents, and screenshots containing any of them.

If a valid ready DCR profile's intentional registration binding changes, for example its issuer, principal, scopes, or resource, run mecated mcp login SERVER --reset-dcr-registration; plain login cannot replace that registration. Pending identity drift is reported as pending-identity-mismatch and cannot reset or retry: restore the matching profile, principal, canonical resource, and exact issuer before running --retry-dcr-registration.

For corrupt, noncanonical, unsupported, or grant-mismatched persisted registration state, preserve the records and configuration: do not edit, delete, or rename them. Contact the deployment operator or support team with only the server name and redacted command error. Never send credential contents, OAuth URLs, client IDs, tokens, keys, or a raw response. Reset and retry cannot bypass this state. For non-DCR profiles, run login again after intentional identity changes. To roll back, replace the whole profile with static_bearer or none and restart.

Environment-backed credentials

For Kubernetes and other managed deployments, use an environment-backed OAuth record. Provision the opaque record and its secret outside Mecatl, inject it into the process, and restart after rotation. The environment reader is read-only; mecated mcp login cannot populate or update it.

For global OAuth profiles, mecak8s does not open a browser and uses a Kubernetes Secret-backed credential. Broker OAuth instead uses an external browser to complete a session enrollment; its preregistered client secret, when needed, is still a Kubernetes Secret. Agent-facing shells receive a scrubbed environment so MCP/provider credentials are not exposed through Shell. See the Kubernetes deployment guide for the Secret wiring.

ToolHive broker OAuth

In mecak8s broker mode, each session starts one opaque enrollment, and ToolHive authorizes the configured protected upstreams sequentially. ToolHive owns upstream callback state, code exchange, refresh, and provider-specific injection, so a token for one backend is not used for another. Mecatl discovers every protected backend and freezes the complete catalog only after successful enrollment.

Static declarations appear as placeholders before authentication. Calling one starts authorization, performs authenticated discovery, and retries the parked call. Live metadata replaces declared placeholders; undeclared tools remain hidden. A successful pre-prompt enrollment instead loads the complete authenticated catalog. Start a new session to discover metadata changes.

A process-private secret protects token exchange between Mecatl and ToolHive. It is excluded from browser flows, logs, snapshots, and upstream calls. Failed enrollment exposes no partial protected catalog.

A model switch creates a new session and therefore a new broker attachment. The new session does not inherit the old session's enrollment or authorization; protected backends may need to be enrolled again.

A protected upstream can use client.mode: dcr to let ToolHive register a client from an HTTPS RFC 8414 discovery document. DCR requires an explicit OAuth2 upstream, is operator-only, and rejects insecure HTTP and private-IP overrides. See the mecak8s deployment guide for the Helm values.

Mecatl controls reveal only the enrollment reference, aggregate state, service count, and temporary presentation URL. They omit upstream names, OAuth codes, endpoints, and tokens. Providers return to ToolHive at /v1/mcp/broker/oauth/callback; ToolHive then completes at the configured Mecatl callback path. Route both paths to the same listener. See the Kubernetes deployment guide for Helm configuration.

Pending broker enrollment is process-local. After a Mecatl restart, start a new enrollment even if ToolHive retained its upstream tokens in Redis. Broker mode requires a single replica. The chart enforces replicaCount: 1 and the Recreate strategy, so broker mode does not provide high availability.

The legacy bearer path is simpler for a server that does not need OAuth:

export MCP_GITHUB_TOKEN='value-from-your-secret-manager'
mecated serve --mcp-server github=https://mcp.example.com/github

The token is read at startup, sent as an Authorization bearer header, and never logged. Token-bearing URLs must use HTTPS, except for loopback HTTP endpoints. Server names are case-insensitively unique and must be safe for the derived environment-variable name.

Runtime behavior and limitations

  • Global-profile serving, ACP, mecatequi, and mecak8s never open a browser. Authorize global profiles locally beforehand or provision an environment credential. A browser may instead complete an already-started ToolHive broker enrollment externally; mecak8s does not launch that browser.
  • Direct DCR and ACP cannot provide OAuth profiles or install or drive authorization. An operator may configure and authorize a named global direct-DCR profile; ACP sessions may then invoke its shared tools under ordinary permissions.
  • Client-provided per-session MCP and inline agent MCP servers cannot provide OAuth profiles. The configured ToolHive broker is the exception: it owns its configured multi-upstream OAuth chain, while Mecatl exposes only the aggregate enrollment.
  • A configured profile that is unreachable or malformed is a deployment error; it does not silently become an unauthenticated server.
  • OAuth credentials authenticate the MCP connection. They do not grant the model permission to call a tool: every namespaced MCP tool still passes through the ordinary permission policy and audit path.
  • OAuth supports RFC 9728 metadata with one exact resource and authorization server, and S256. Preregistered confidential clients remain Basic-authenticated; direct DCR clients use the public none method with no refresh. RFC 9207 issuer validation follows authorization-server metadata: if the server advertises authorization_response_iss_parameter_supported, its callback must include the matching iss; otherwise iss may be omitted, but any supplied issuer must still match.
  • A connection drop can trigger one bounded reconnect and retry. A server-declared tool failure is not replayed automatically because the call may have mutated remote state. The startup tool catalog is retained across reconnects; changed remote tool lists take effect after the next Mecatl process start.
  • Treat the local credential store and configuration backups as sensitive. Keep roots owner-only and use your deployment's secret manager for rotation.

For MCP tool discovery, namespacing, permissions, reconnect behavior, resources, and prompts, see MCP client. For the complete operator profile rules, see the configuration reference.

Next steps