rest-api-mcp-server-2
Verified Safeby Jammy2005
Overview
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing custom AI tools (a calculator in this case) accessible via Server-Sent Events (SSE) without authentication.
Installation
npm run devEnvironment Variables
- OAUTH_KV (Cloudflare KV Namespace binding)
- MCP_OBJECT (Cloudflare Durable Object Namespace binding)
- ASSETS (Cloudflare Fetcher binding)
Security Notes
The server is explicitly designed to be 'Authless,' meaning it does not require authentication to access its tools. While this is a stated design choice, it implies that anyone with the URL can invoke the provided calculator tools. No explicit 'eval' or other highly dangerous patterns were found. Cloudflare Workers generally provide a secure execution environment.
Similar Servers
remote-mcp-server-authless
A remote Model Context Protocol (MCP) server providing basic calculator functionality on Cloudflare Workers, designed to be authentication-less for demonstration or private network usage.
bible-api-mcp-server
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, offering authentication-less calculator tools for AI agents and clients.
remote-mcp-server-humaka
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing AI agents with defined tools (e.g., calculator functions) without requiring authentication.
remote-mcp-server-authless
Provides a Model Context Protocol (MCP) server on Cloudflare Workers, exposing simple calculator-like tools and user identity, secured via Google OAuth.