Skip to content

Commit 5ab9891

Browse files
authored
Securing Arcade MCP Deployments (#582)
* Securing Arcade MCP Deployments * grammar
1 parent a930e22 commit 5ab9891

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

app/en/home/serve-tools/_meta.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export default {
22
"arcade-deploy": "Arcade Deploy",
3+
"securing-arcade-mcp": "Securing Arcade MCP",
34
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Securing Arcade MCP Deployments
2+
3+
You may have noticed that when you connected to the MCP serer you created with `arcade-mcp`, you could immediately call your tools from local MCP Clients and agents, like Claude and Cursor. This is because the `arcade-mcp` server is *not* secured by any mechanism by default. Most use-cases for MCP servers today are local development or local to a single machine, and we optimize for that use-case.
4+
5+
However, you can secure your MCP server by deploying it to Arcade (available today) or using OAuth (coming soon).
6+
7+
## Arcade Deploy
8+
When you `arcade deploy` your MCP server, it will be secured behind the Arcade platform.
9+
10+
Under the hood, we disable the MCP routes provided by `arcade-mcp`, and use the Arcade Engine as a gateway for your MCP server, which has a number of additional features. Arcade will create a randomized secure secret for your MCP server (via the `ARCADE_WORKER_SECRET` environment variable) so that your server is protected from unauthorized access, as well as being isolated from direct access from outside of the Arcade platform. Servers managed by Arcade (servers that are `arcade deploy`ed) serve `/worker` endpoints that are protected by this secret. The worker endpoints are `worker/health`, `/worker/tools`, and `/worker/tools/invoke`. The health endpoint is not protected by this secret, but the listing tools and tool invocations are. You can explore this locally by setting the same environment variable in your locally.
11+
12+
Learn more about how to deploy your MCP server to Arcade [here](/home/serve-tools/arcade-deploy).
13+
14+
## OAuth (Coming soon)
15+
Coming soon, you will be able to secure your MCP server's `/mcp` endpoints with a OAuth Authorization Server (AS) - either using Dynamic Client Registration (DCR) or Client ID Metadata Documents (CIMD). Learn more about how MCP integrates with OAuth [here](https://blog.modelcontextprotocol.io/posts/client_registration/).

0 commit comments

Comments
 (0)