MCP Time Server on Cloudflare (Without Auth)
@iamajeesh
Remote MCP time server on Cloudflare
Overview
What is MCP Time Server on Cloudflare (Without Auth)?
This server deploys a remote MCP time server on Cloudflare Workers that provides tools for getting the current time in different timezones and converting time between timezones, without any authentication.
How to use MCP Time Server on Cloudflare (Without Auth)?
Deploy via the "Deploy to Workers" button or the CLI command npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Once deployed, connect to the SSE endpoint (e.g., mcp-time-server.<your-account>.workers.dev/sse) from an MCP client such as Cloudflare AI Playground or Claude Desktop (using the mcp-remote proxy).
Key features of MCP Time Server on Cloudflare (Without Auth)
- Get current time in any IANA timezone.
- Convert time between two timezones.
- No authentication required for access.
- Deploys on Cloudflare Workers globally.
- Communicates via SSE transport.
Use cases of MCP Time Server on Cloudflare (Without Auth)
- Retrieve the current time for a specific timezone (e.g., "America/New_York").
- Convert a given time from one timezone to another (e.g., 14:30 EST to London time).
- Integrate time tools into local MCP clients like Claude Desktop.
- Use the server remotely from Cloudflare AI Playground.
FAQ from MCP Time Server on Cloudflare (Without Auth)
What tools does the server provide?
It provides get_current_time (current time in a timezone) and convert_time (convert time between timezones).
How do I deploy the server?
You can deploy it by clicking the "Deploy to Workers" button on the README or by running the CLI command: npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless.
Can I connect it to Claude Desktop?
Yes, use the mcp-remote proxy with npx mcp-remote <your-sse-url> in the Claude Desktop configuration.
Does the server require authentication?
No, this deployment does not require authentication.
What transport protocol does it use?
It uses SSE (Server-Sent Events) transport.