remote-mcp-server-for-n8n-test
Verified Safeby Sergey-Bondarev
Overview
Deploys an authentication-less Model Context Protocol (MCP) server on Cloudflare Workers, providing simple mathematical tools for AI clients like Cloudflare AI Playground or Claude Desktop.
Installation
npm startEnvironment Variables
- OAUTH_KV
- MCP_OBJECT
- ASSETS
Security Notes
The server is explicitly designed to be 'authless' as stated in the README. This means that, by default, any deployed instance will be publicly accessible. While the implemented tools (calculator functions) are simple and do not inherently pose high-risk vulnerabilities like code injection, deploying without additional Cloudflare Worker authentication/authorization mechanisms could lead to unintended public access and potential resource abuse if not properly rate-limited or secured at the edge. Input validation for tools is handled via `zod`, which is a good practice.
Similar Servers
remote-mcp-server-authless
Deploys a Model Context Protocol (MCP) server on Cloudflare Workers to expose simple calculator tools for integration with AI clients, typically without requiring explicit authentication from the client.
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.
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.
remote-mcp-server-authlesssa
Deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing calculator tools without requiring authentication, primarily for demonstration and integration with clients like Cloudflare AI Playground or Claude Desktop.