Auth0 implements the On-Behalf-Of (OBO) token exchange (RFC 8693) to enable MCP servers to preserve user identity and permissions when calling downstream APIs. In the OBO token exchange flow, the MCP server acts in a dual role: as a resource server when receiving requests from the client, and as a client when calling your downstream API on the user’s behalf. To call your APIs on a user’s behalf, the MCP server must exchange the Auth0 access token it receives from the MCP client for a new access token with a different audience. The original token has the MCP server as its audience, while the new token has your downstream API as its audience.Documentation Index
Fetch the complete documentation index at: https://auth0.com/ai/docs/llms.txt
Use this file to discover all available pages before exploring further.


- An MCP server that calls your protected APIs on behalf of authenticated users using the OBO token exchange
- Token verification and exchange using the
@auth0/auth0-api-jslibrary (JavaScript) orauth0-api-pythonlibrary (Python) - A working example demonstrating the end-to-end OBO token exchange flow from client to MCP server to downstream API
Prerequisites
1. Create or log in to your Auth0 account
1. Create or log in to your Auth0 account
To continue with this quickstart, you need to have an Auth0 account.
2. Enable your tenant to use the Resource Parameter Compatibility Profile
2. Enable your tenant to use the Resource Parameter Compatibility Profile
To use the
resource parameter in your access tokens, you need to enable the Resource Parameter Compatibility Profile.The quickest way to enable it is through the Auth0 Dashboard:- Navigate to Settings on the left sidebar.
- Select Advanced in the top right corner.
- Scroll down to the Settings section and enable the Resource Parameter Compatibility Profile toggle.
3. Install the Auth0 CLI
3. Install the Auth0 CLI
This guide uses Auth0 CLI to configure an Auth0 tenant for secure MCP tool access.Confirm you are in the correct tenant by double-checking the tenant domain in the terminal, or run the command below:If more than one tenant is configured, the default tenant will be indicated by an arrow.
- Follow the Auth0 CLI installation instructions.
- Log in to your account with the Auth0 CLI:
4. Install jq
4. Install jq
To simplify the process of interacting with the Auth0 CLI, we recommend installing jq. This will allow you to easily parse JSON responses from the CLI.
- macOS
- Linux
- Windows
Configure tenant settings
1. Promote the connection to a domain-level connection
1. Promote the connection to a domain-level connection
To allow third-party clients like MCP Inspector to use a connection such as a username-and-password database or a social connection, you need to promote the connection to a domain-level connection. Learn more about configuring third-party applications.
Choose Your Connections
From the list, identify which connections you want to use for the MCP server and copy the ID.
- For the username-and-password database, look for the connection with the strategy
auth0. - For the Google social connection, look for the connection with the strategy
google-oauth2.
2. Create roles
2. Create roles
The sample application in this quickstart is prepared to show different tools depending on the role of a given user. For example, a Tool Administrator will have access to different tools than a Tool User.Let’s create roles that allow you to control which users can access which tools.For each role you need (e.g., “Tool Administrator”, “Tool User”), run the create command as below.Save the IDs from the output (they start with
rol_), as you’ll need them in a later step to assign permissions and users to these roles.3. Assign roles to users
3. Assign roles to users
Find users and assign them to the roles. You can search by their email address:Copy the user ID (
USERID) from the last command’s output, then assign the role to the user:Set up the Auth0 applications and APIs
The MCP server’s dual role requires two configurations in Auth0:- As a resource server: An API that the MCP client calls
- As a client: An application that can exchange tokens to call downstream APIs
Create an API to represent your MCP server
An MCP server is treated just like any other API in your Auth0 tenant, which means you can use the same access control, scoping, and authorization features. The API (also known as a Resource Server) represents your protected MCP Server. Run the following command to create an API in Auth0:rfc9068_profile_authz is used as the token dialect to include the permissions claim in the access token, which can be useful for the API to check user permissions without making additional calls.
For more details on protecting APIs with Auth0, check our quickstarts.
Assign permissions to roles
Assign permissions to roles
After creating the API and roles, assign the API permissions to the roles.Replace
YOUR_ADMIN_ROLE_ID and YOUR_USER_ROLE_ID with the role IDs you saved when creating the roles.Create an application for your MCP server
Create an application that allows your MCP server to act as a client for the OBO token exchange. This application must:- Have the same identifier as your MCP server API (
resource_server_identifier) - Use
app_type: resource_serverto link it to the MCP server - Enable OBO token exchange in the
token_exchangeconfiguration
client_id and client_secret from the output; you’ll need them to configure your MCP server environment.
Create a downstream API
Create the protected API that your MCP server will call on the user’s behalf. This API represents your business logic API (e.g., a calendar API, document API, etc.). The following command creates an API with the following configurations:- Client grants: Gives the MCP server user-delegated and client access the API
- Scope enforcement: Requires specific permissions (
read:private) - First-party status: Skips user consent for your own applications
API_AUTH0_AUDIENCE.
Sample app
- Javascript
- Python
- Use sample app (recommended)
- Clone GitHub repository
Start by downloading the sample app for this quickstart. The sample includes a FastMCP MCP server with an Auth0 integration and a protected API built with
Fastify.Once downloaded, extract the files and open the project in your preferred IDE.
greet tool that:- Receives an authenticated request from an MCP client
- Exchanges the token for downstream API access
- Calls your protected API on the user’s behalf
- Returns the result
Install packages
Make sure you have npm installed. Then, in thefastmcp-mcp-on-behalf-of-tokenexchange-js directory, install the required packages:Create your environment file
From the root of your sample app directory, run the following command to create a new.env file populated with all the required environment variables:Run the MCP server and the API
Run this command to start your server:Exchange your access token
To call your APIs on a user’s behalf, the MCP server uses the OBO token exchange to exchange the Auth0 access token it received from the MCP client (with the audience set to the MCP server itself) for a new Auth0 access token with the audience set to your API.Token exchange implementation
The MCP server exchanges tokens in two steps:1. Wrapper function: bearerForUpstream()
This function safely handles the token exchange process and error handling:bearerForUpstream() calls exchangeTokenOnBehalfOf() and, upon a successful exchange, returns the new accessToken and its associated scope. If the exchange fails, it logs the error and re-throws it to be handled upstream.2. Exchange function: exchangeTokenOnBehalfOf()
This function, located in src/auth0.ts, calls Auth0’s OBO token exchange endpoint using the SDK.First, initialize the ApiClient with the credentials of the MCP server application:exchangeTokenOnBehalfOf() function uses the client’s getTokenOnBehalfOf() method to perform the token exchange.getTokenOnBehalfOf() implements the OBO token exchange flow, which allows the MCP server to obtain a new token to call the downstream API while preserving the user’s identity. It takes in the accessToken, audience, and scope parameters.Testing your MCP server
Now that your MCP server is up and running, you can test it by using tools like MCP Inspector.Learn how to test your Auth0-powered MCP server
Next steps
- To set up MCP server authorization, complete the Authorization for Your MCP Server quickstart.