SteadyFetch
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SteadyFetchfetch the markdown from https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SteadyFetch
Reliable web fetching for AI agents. Stop losing hours to Cloudflare blocks, timeouts, and flaky scrapes.
SteadyFetch is an MCP server that gives your AI agents reliable web access with automatic retry, circuit breaker protection, caching, and anti-bot bypass — out of the box.
The Problem
Every AI agent that touches the web hits the same wall:
Cloudflare blocks your requests
Sites return CAPTCHAs
Pages timeout or load partially
Rate limits kill your batch jobs
You waste hours debugging flaky scrapes
Related MCP server: PowerSearch MCP
The Solution
One MCP tool call. SteadyFetch handles the rest.
Agent calls fetch_url("https://example.com")
→ Checks cache (instant if hit)
→ Checks circuit breaker (fail-fast if domain is down)
→ Stealth browser fetch with anti-bot bypass
→ On failure: retry with exponential backoff
→ Fallback: plain HTTP fetch
→ Cache the result
→ Return clean markdown + raw HTMLTools
Tool | Description |
| Full reliability fetch — returns markdown + HTML |
| Returns only clean markdown, optimized for LLMs |
| Circuit breaker status for a domain |
| Cache utilization metrics |
| Flush the cache for fresh data |
Quick Start
Install from PyPI
pip install steadyfetch
steadyfetchThen connect from Claude Desktop:
{
"mcpServers": {
"steadyfetch": {
"command": "steadyfetch"
}
}
}Self-host with Docker
docker build -t steadyfetch .
docker run -p 8200:8200 steadyfetchConfiguration
All settings via environment variables:
Variable | Default | Description |
| 8200 | Server port |
| 3 | Retry attempts per URL |
| 5 | Failures before circuit opens |
| 120 | Seconds before retrying a broken domain |
| 3600 | Cache lifetime in seconds |
| 30000 | Page load timeout in ms |
How It Works
Retry with backoff — Exponential backoff + jitter prevents retry storms. 3 browser attempts before falling back to HTTP.
Circuit breaker — Per-domain failure tracking. After 5 consecutive failures, the domain is circuit-broken for 2 minutes. Prevents wasting time on sites that are blocking you.
Caching — Disk-backed cache with configurable TTL. Repeat fetches are instant. 500MB default limit.
Anti-bot bypass — Stealth browser with magic mode, navigator patching, and human-like behavior simulation via Crawl4AI.
Graceful degradation — If the browser can't get through, falls back to plain HTTP. If HTTP fails, returns a clear error with domain health status. Never hangs, never silently fails.
Free vs Pro
Tool | Free | Pro ($19/mo) |
| Yes (no JS render, no cache) | Yes (full: JS render + cache + anti-bot) |
| Yes | Yes |
| - | Yes |
| - | Yes |
| - | Yes |
Free tier gives you basic HTTP fetching and domain health checks. Pro unlocks JS rendering, anti-bot bypass, caching, and clean markdown output.
Upgrade to Pro on MCPize — $19/mo or $190/yr.
License
MIT
This server cannot be installed
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/carsonlabs/steadyfetch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server