bible-api-mcp-server
Verified Safeby tjwio
Overview
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, offering authentication-less calculator tools for AI agents and clients.
Installation
wrangler devEnvironment Variables
- OAUTH_KV (KVNamespace)
- MCP_OBJECT (DurableObjectNamespace)
- ASSETS (Fetcher)
Security Notes
The source code itself (src/index.ts) uses Zod for input validation on the calculator tools, making the arithmetic operations robust against common injection attacks within their defined scope. No direct 'eval' or other highly dangerous patterns are present. However, the server is explicitly designed to be 'authless', as stated in the README, meaning it lacks any authentication or authorization mechanisms. While this is intentional for the example, deploying such a server publicly for sensitive operations or without proper access controls would pose a significant security risk for a real-world application.
Similar Servers
remote-mcp-server-authless
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers, providing an unauthenticated calculator agent for AI tools.
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
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.
remote-mcp-server-authless
Deploys a remote Model Context Protocol (MCP) server without authentication on Cloudflare Workers, providing basic calculator tools for AI agents.