remote-mcp-server-authless
Provides tools for Cloudflare observability, including zone analytics, zone management, and web analytics.
Allows querying Workers Analytics Engine with SQL-like queries.
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., "@remote-mcp-server-authlesscalculate 15 + 27"
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.
Building a Remote MCP Server on Cloudflare (Without Auth)
This example allows you to deploy a remote MCP server that doesn't require authentication on Cloudflare Workers. This server includes Cloudflare observability tools for monitoring your websites and Workers.
Get started:
This will deploy your MCP server to a URL like: remote-mcp-server-authless.<your-account>.workers.dev/sse
Alternatively, you can use the command line below to get the remote MCP Server created on your local machine:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authlessRelated MCP server: Universal MCP Server
Running Locally
You can run this MCP server locally for development and testing:
Install dependencies:
npm installStart the development server:
npm run dev # or npm startYour MCP server will be running at
http://localhost:8787/Test with MCP Inspector:
npx @modelcontextprotocol/inspectorIn the inspector:
Set Transport Type to
SSEEnter
http://localhost:8787/sseas the server URLClick "Connect"
Connect from Claude Desktop: Use the mcp-remote proxy in your Claude Desktop config:
{ "mcpServers": { "cloudflare-mcp": { "command": "npx", "args": [ "mcp-remote", "http://localhost:8787/sse" ] } } }
Available Tools
Calculator Tools
add- Simple additioncalculate- Calculator with multiple operations (add, subtract, multiply, divide)
Cloudflare Observability Tools
Zone Analytics
cloudflare_zone_analytics- Get analytics summary for a Cloudflare zoneReturns: total requests, bandwidth, unique visitors, threats blocked, page views
Parameters:
zone_id,api_token,since(optional),until(optional)
cloudflare_zone_analytics_timeseries- Get time series analytics dataReturns: Detailed time series data with requests, bandwidth, visitors, threats over time
Parameters:
zone_id,api_token,since(optional),until(optional)
Zone Management
cloudflare_list_zones- List all zones in your accountReturns: Zone IDs, names, status, plan, and creation dates
Parameters:
api_token,name(optional filter)
Workers Analytics
cloudflare_workers_analytics- Query Workers Analytics EngineExecute SQL-like queries against your Workers Analytics Engine datasets
Parameters:
account_id,api_token,dataset(optional),query
Web Analytics
cloudflare_web_analytics- Get Web Analytics data for a siteReturns: Web Analytics statistics for your site
Parameters:
account_id,site_tag,api_token,start(optional),end(optional)
Getting Cloudflare API Tokens
To use the Cloudflare observability tools, you'll need API tokens with appropriate permissions:
Go to Cloudflare Dashboard
Click "Create Token"
Use "Edit zone DNS" template or create a custom token with:
Zone Analytics:Read - For zone analytics tools
Zone:Read - For listing zones
Account Analytics:Read - For Workers and Web Analytics
Copy the token (you'll only see it once!)
Finding Your Zone ID and Account ID
Zone ID: Found in your Cloudflare dashboard under your domain's overview page
Account ID: Found in the right sidebar of your Cloudflare dashboard
Example Usage
Get Zone Analytics
Tool: cloudflare_zone_analytics
Parameters:
- zone_id: "your-zone-id"
- api_token: "your-api-token"
- since: "2024-01-01T00:00:00Z" (optional)
- until: "2024-01-31T23:59:59Z" (optional)List Your Zones
Tool: cloudflare_list_zones
Parameters:
- api_token: "your-api-token"
- name: "example.com" (optional)Query Workers Analytics
Tool: cloudflare_workers_analytics
Parameters:
- account_id: "your-account-id"
- api_token: "your-api-token"
- query: "SELECT * FROM dataset LIMIT 10"
- dataset: "default" (optional)Customizing your MCP Server
To add your own tools to the MCP server, define each tool inside the init() method of src/index.ts using this.server.tool(...).
Connect to Cloudflare AI Playground
You can connect to your MCP server from the Cloudflare AI Playground, which is a remote MCP client:
Enter your deployed MCP server URL (
remote-mcp-server-authless.<your-account>.workers.dev/sse)You can now use your MCP tools directly from the playground!
Connect Claude Desktop to your MCP server
You can also connect to your remote MCP server from local MCP clients, by using the mcp-remote proxy.
To connect to your MCP server from Claude Desktop, follow Anthropic's Quickstart and within Claude Desktop go to Settings > Developer > Edit Config.
Update with this configuration:
{
"mcpServers": {
"cloudflare-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse" // or remote-mcp-server-authless.your-account.workers.dev/sse
]
}
}
}Restart Claude and you should see the tools become available.
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.
Latest Blog Posts
- 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/malci6464/remote-mcp-server-authless'
If you have feedback or need assistance with the MCP directory API, please join our Discord server