Deploying to the cloud with Arcade Deploy
Running your servers locally is very convenient during development and testing. Once your is mature, however, you may want to access it from any MCP client, or to facilitate multi- support. Doing all that from your computer comes with the complexity of running and maintaining a server, handling auth and high availability for all your users and all the integrations you want to support. Arcade Deploy takes care of all that for you.
This guide shows you how to deploy your Server with Arcade Deploy.
Requirements
- Python 3.10 or higher
Verify your Python version by runningpython --versionorpython3 --versionin your terminal. - Arcade : Sign up for an Arcade account if you haven’t already.
- Arcade CLI: Install the Arcade CLI
uv
uv pip install arcade-mcpCreate an MCP server using Arcade MCP
If you have not created an server, follow the steps outlined in this guide.
Deploy your MCP Server
Run the deploy command in the directory where you started your server (containing your pyproject.toml file).
arcade deployBy default, running arcade deploy will look for a server.py file as its entry point. If your server uses a different script, you can use the --entrypoint option to point to the correct script. For example, if your pyproject.toml is in ~/my-app/mcp-server/, and the script containing the MCPApp (or app.run()) is ~/my-app/mcp-server/server/my_mcp_server.py, you would run the server with the following command:
cd ~/my-app/mcp-server
arcade deploy --entrypoint ./server/my_mcp_server.pyIt is important that your entrypoint script executes MCPApp.run() (or
app.run() if app is of type MCPApp) when invoked directly.
We recommend to do it inside an if __name__ == "__main__": statement.
You should see output like the following:
Verifying server and extracting metadata...
✓ Server is healthy
✓ Found server: ArcadeMCP v0.1.0
ArcadeMCP v0.1.0 has 3 tools
Discovered 1 required secret(s)
Required secrets: MY_SECRET_KEY
✓ Secret 'MY_SECRET_KEY' uploaded
Creating deployment package...
✓ Package created (1.8 KB)
Deploying to Arcade Engine...
✓ Server deployed successfullyManage your MCP servers in Arcade
Navigate to the Servers page in your Arcade dashboard. From there, you will be able to:
- Monitor the health status of the server
- Get a connection string to configure your clients.
- Delete the server
- Test and execute all the
- Manage users connected to the
- Create Gateways
List your MCP servers on the terminal
Run the following command to list your servers:
arcade server listYou should see output like the following:
┌----------┳----------┳-------------┳---------┳------------┳------------------┓
| | Cloud | Engine | | | |
| ID | Deployed | Registered | Enabled | Host | Toolkits |
├----------╇----------╇-------------╇---------╇------------╇------------------┤
| main | False | True | True | http://wo… | SlackApi, Asana, |
| | | | | | BoxApi, Clickup, |
| | | | | | ... |
| | | | | | Zendesk, Zoom |
| mcp_demo | False | True | True | | Demo |
└----------┴----------┴-------------┴---------┴------------┴------------------┘Your Server is now deployed and registered with the engine and ready to use!