remote-mcp-server
Verified Safeby devakapatel
Overview
This server provides a Model Context Protocol (MCP) endpoint on Cloudflare Workers, acting as a bridge to expose simple AI tools (like a math 'add' function) to MCP clients such as Claude Desktop, with a mocked OAuth login for demo purposes.
Installation
npx nx dev remote-mcp-serverEnvironment Variables
- OAUTH_KV
- MCP_OBJECT
- ASSETS
Security Notes
The OAuth login system is explicitly mocked to accept any email and password combination for authorization (as noted by `// We'll allow any values for email and password for this demo` and `if (false)` in `src/app.ts`). This is a critical security vulnerability if used outside of a strictly isolated development or demonstration environment. No obfuscation, 'eval', or other obvious malicious patterns were found. However, the intentional insecurity of the authentication mechanism significantly lowers the security score for any real-world application.
Similar Servers
remote-mcp-server-for-n8n-test
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.
remote-mcp-server-auth
A remote Model Context Protocol (MCP) server deployed on Cloudflare Workers, providing AI tools authenticated via Google OAuth for consumption by AI clients.
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.
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.