Skip to main content
Glama
romeucampos

Cloudflare MCP Server — Code Mode

by romeucampos

Cloudflare MCP Server — Code Mode

Serverless starter for building a remote Model Context Protocol (MCP) server on Cloudflare Workers.

The project is designed for code mode: clients can discover capabilities and compose tool calls with structured responses. Arbitrary code execution is not enabled in the starter; it should only be added after defining a sandbox, authentication, limits, and auditing.

Goals

  • Run on the edge via Cloudflare Workers.

  • Expose an MCP endpoint at /mcp.

  • Keep tools small, typed, and composable.

  • Prepare OAuth authentication and Cloudflare bindings.

  • Evolve to secure code execution in an isolated sandbox.

Related MCP server: remote-mcp-server-authless

Local development

Prerequisites: Node.js 18+ and a Cloudflare account with Workers enabled.

npm install
npm run dev

The local server is available at http://localhost:8788/mcp.

To validate with the MCP Inspector:

npx @modelcontextprotocol/inspector@latest

Deploy

npx wrangler login
npm run deploy

After deploying, the endpoint will be:

https://<worker>.<account>.workers.dev/mcp

Structure

  • src/index.ts: Worker HTTP routing.

  • src/mcp.ts: MCP server and tools.

  • wrangler.jsonc: Worker configuration.

  • PLAN.md: implementation plan and acceptance criteria.

Security

Do not add eval, new Function, or a code interpreter directly to the Worker. For code mode with real execution, use an appropriate sandbox, strong authentication, API allowlists, CPU/memory/time limits, per-user isolation, and logs without secrets.

Next steps

See PLAN.md.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/romeucampos/cloudflare-mcp-server-code-mode'

If you have feedback or need assistance with the MCP directory API, please join our Discord server