tomcp
Verified Safeby Ami3466
Overview
Transforms any public website into an MCP server, providing clean markdown content and enabling AI chat capabilities for documentation and general queries.
Installation
wrangler deployEnvironment Variables
- CF_ACCOUNT_ID
Security Notes
The server fetches content from arbitrary user-provided URLs. While Cloudflare Workers offer isolation, this pattern (SSRF) inherently carries a theoretical risk if the worker's network access isn't fully sandboxed. The `htmlToMarkdown` function uses basic regex replacements, which might be fragile against highly malformed HTML but does not involve `eval` or direct parsing into a DOM, mitigating some direct code injection risks. User-provided Cloudflare API keys are handled securely by being stored locally in the browser and passed only per-request, never stored on the server.
Similar Servers
mcp-docs-server
Serves Markdown documentation, reusable prompt templates, and various file types as an MCP server for AI agents.
BlogCaster-MCP
Publish, list, and delete blog posts across multiple blogging platforms (Hashnode, Dev.to, WordPress) from an MCP-enabled AI client, with token storage handled securely in the cloud.
mq-mcp
Provides an MCP server for AI assistants to process Markdown and HTML content using the 'mq' query language.
n8n-mcp-server
Deploys a remote Model Context Protocol (MCP) server on Cloudflare Workers for exposing AI tools without requiring authentication.