remote-mcp-server-authless
by muskke
Overview
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.
Installation
npm run devSecurity Notes
The server is explicitly designed to operate 'authless' (without authentication), as clearly stated in its name and README. This means that if deployed publicly without additional, custom authentication measures, its functionality will be accessible to anyone. This poses a significant security risk for any sensitive data or operations. The core calculator logic (add, calculate) within `src/index.ts` does not exhibit obvious code-based vulnerabilities like command injection or SQL injection. The primary security concern stems from its intended lack of access control.
Similar Servers
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.
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.
rest-api-mcp-server-2
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.
classhopper-mcp-server
Deploy a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing a set of calculator tools without authentication for easy integration with AI clients like Cloudflare AI Playground or Claude Desktop.