remote-mcp-server-authless-andor vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
remote-mcp-server-authless-andor by elizabethsiegle | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 28 | 76 |
| Official | — | ✓ |
| Categories | Web ScrapingBrowser AutomationAI / LLM Tools | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
remote-mcp-server-authless-andor · Summary
Remote MCP server for web scraping using Cloudflare Browser Rendering and Workers AI, with no authentication required.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
remote-mcp-server-authless-andor · Use cases
- Extracting content from websites that require browser rendering
- Creating custom AI-powered web scraping tools
- Building remote MCP services without authentication infrastructure
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
remote-mcp-server-authless-andor · Install
Installation
- Deploy to Cloudflare Workers using the button below:
[](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)
- Or use the command line to create the project locally:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless- Connect to Claude Desktop by adding this to your config:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}