remote-mcp-server-authless
Verified Safeby lgrassin
Overview
A remote Model Context Protocol (MCP) server providing basic calculator tools without authentication, designed for deployment on Cloudflare Workers and integration with AI agents.
Installation
wrangler devEnvironment Variables
- OAUTH_KV
- MCP_OBJECT
- ASSETS
Security Notes
The server is explicitly designed to be 'authless' for demonstration purposes, meaning it is publicly accessible without authentication. Inputs to the calculator tools are strictly validated using Zod (z.number(), z.enum()), preventing common injection vulnerabilities. Division by zero is handled, and no direct 'eval' or other high-risk functions are used. The overall code quality for the implemented tools is high, and sensitive operations are not exposed. However, its 'authless' nature means it should not be used for private or sensitive calculations without adding an authentication layer.
Similar Servers
remote-mcp-server-authless
Deploys an unauthenticated Model Context Protocol (MCP) server on Cloudflare Workers, providing basic arithmetic tools (addition, calculation) for AI agents.
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
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing an unauthenticated calculator agent for AI tools.
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.