mcpu
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcpuEdit worker.js, commit, and deploy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcpu
mcpu is an MCP control surface for a Cloudflare Artifacts repo. GitHub is only the bootstrap seed. After first deploy, source commits live in Cloudflare Artifacts and deploy back to Cloudflare Workers.
Start here
1. Deploy to your Cloudflare account
Click Deploy to Cloudflare above and finish the deploy flow.
When it completes, copy your Worker URL. It will look like:
https://mcpu.<your-subdomain>.workers.devIf you deploy with workers_dev = false, use the route or custom domain you configured instead.
2. Protect /mcp
Before adding deploy-capable secrets, protect /mcp with Cloudflare Access or an equivalent auth layer. Do not expose a public MCP endpoint with ARTIFACTS_TOKEN or CLOUDFLARE_API_TOKEN configured.
3. Add secrets for the Artifact loop
mcpu needs an Artifacts Git remote and token before repo.commit can push source to Cloudflare Artifacts.
Set these Worker secrets/vars in your account:
ARTIFACTS_REMOTE=https://<account-id>.artifacts.cloudflare.net/git/default/mcpu.git
ARTIFACTS_TOKEN=art_v1_...
ARTIFACTS_BRANCH=main
MCPU_SCRIPT_NAME=mcpu
CLOUDFLARE_ACCOUNT_ID=<account-id>
CLOUDFLARE_API_TOKEN=<token that can edit Workers>GitHub is not used after bootstrap.
4. Add mcpu to your MCP config
Use your deployed Worker URL plus /mcp.
{
"mcpServers": {
"mcpu": {
"url": "https://mcpu.<your-subdomain>.workers.dev/mcp"
}
}
}For a custom domain:
{
"mcpServers": {
"mcpu": {
"url": "https://mcpu.example.com/mcp"
}
}
}5. Try it
Ask your agent:
Connect to mcpu. Run repo.status, list files, read worker.js, change the homepage text, show the diff, commit it, and deploy it.Expected loop:
repo.write -> repo.diff -> repo.commit -> Cloudflare Artifacts -> repo.deploy -> Cloudflare WorkersRelated MCP server: mcp-server-cloudflare
Local development
Run the seed locally:
npm install
npm test
npm run dev -- --port 8799Then connect to:
http://localhost:8799/mcpLocal MCP config:
{
"mcpServers": {
"mcpu-local": {
"url": "http://localhost:8799/mcp"
}
}
}Reference
Tools:
repo.statusrepo.lsrepo.readrepo.writerepo.diffrepo.commitrepo.deployrepo.history
State:
draft- mutable working treeartifact- immutable source commit in Cloudflare Artifactsdeployment- Worker version deployed from an Artifact
Explanation
GitHub gets you to zero. Cloudflare owns everything after.
The demo is intentionally tiny: a live MCP edits a Cloudflare Artifacts repo, commits it, and deploys that Artifact as the next version of itself.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that allows using natural language to manage Cloudflare resources (Workers, KV, R2, D1) through Claude Desktop, VSCode, and other MCP clients.Last updated1010Apache 2.0
- AlicenseAqualityFmaintenanceMCP server to manage Cloudflare Workers, KV, R2, Pages, DNS, and cache from your IDE.Last updated13434MIT
- Alicense-qualityDmaintenanceEnables creation and deployment of MCP servers on Cloudflare Workers, with local testing and one-command deployment.Last updated185MIT
- Alicense-qualityBmaintenanceEnables remote MCP clients to access local filesystem and shell commands by deploying a Cloudflare Worker relay and a local daemon, providing tools like read/write files, exec commands, git status, etc.Last updated1,3151MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acoyfellow/mcpu'
If you have feedback or need assistance with the MCP directory API, please join our Discord server