We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakedismo/master-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cloudflare-workers-tutorial.md•696 B
# Tutorial: Cloudflare Workers
Run Master MCP Server on Cloudflare Workers with the provided runtime.
## 1) Prerequisites
- Cloudflare account
- `wrangler` CLI
## 2) Configure
Update `deploy/cloudflare/wrangler.toml` as needed. Secrets:
```
wrangler secret put TOKEN_ENC_KEY
```
If you need persistent token storage, bind a KV namespace named `TOKENS` and pass it via environment bindings.
## 3) Dev
```
wrangler dev
```
## 4) Deploy
```
wrangler deploy --env staging
wrangler deploy --env production
```
Ensure `hosting.platform` resolves to `cloudflare-workers` (detected automatically) and that `hosting.base_url` is set appropriately if you rely on absolute redirects for OAuth.