Use Arcade with Claude Desktop
In this guide, you’ll learn how to connect Claude Desktop to a local Arcade server.
Prerequisites
- Create an Arcade
- Get an Arcade API key
- Create an Arcade MCP Gateway and select the you want to use
Set up Claude Desktop
- Download and open Claude Desktop
- Claude Menu —> “Settings” —> “Developer” —> “Edit Config”
- Follow the guide here
- Open the configuration file and replace the file contents with this:
- Give your server a name, like
mcp-arcade
- Use the the URL of your Gateway.
- Add the as the bearer token within the
Authorization
header, and the email address that you used to sign up for the Arcade as theArcade-User-ID
header
- Give your server a name, like
JSON
{
"mcpServers": {
"arcade-mcp": {
"url": "https://api.arcade.dev/mcp/<YOUR-GATEWAY-SLUG>",
"headers": {
"Authorization": "Bearer {arcade_api_key}",
"Arcade-User-ID": "{arcade_user_id}"
}
}
}
}
- Restart Claude Desktop. Upon restarting, you should have access to the Arcade you installed.
Last updated on