remote-mcp-server-authless
Verified Safeby mmaoyu
Overview
Deploys an unauthenticated Model Context Protocol (MCP) server on Cloudflare Workers, providing basic calculator tools for remote AI clients.
Installation
wrangler devEnvironment Variables
- OAUTH_KV
- MCP_OBJECT
- ASSETS
Security Notes
The server implements simple arithmetic tools with strict input validation using `zod`. It relies on `@modelcontextprotocol/sdk` for safe handling of MCP communication. There is no usage of `eval` or direct execution of arbitrary user input beyond the defined tool parameters. The server is explicitly designed to be "authless" for demonstration purposes, meaning it is publicly accessible, which is a known feature rather than an inherent vulnerability in its code logic.
Similar Servers
mcp-server-authless
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers without authentication, allowing AI clients to access custom tools.
test-remote-mcp-server
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers to expose custom tools to AI agents without authentication.
n8n-mcp-server
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers for exposing AI tools without requiring authentication.
mcp-remote-server-cloudflare
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers to expose simple calculator and random number generation tools without requiring authentication.