SteadyFetch
io.github.carsonroell-debug/steadyfetchReliable web fetching for AI agents with retry, circuit breaker, caching, and anti-bot bypass
Tools · 5
Fetch a URL with full reliability — retry, circuit breaker, cache, and anti-bot bypass. Returns both raw HTML and clean markdown. Automatically retries on failure with exponential backoff, fa…
Fetch a URL and return clean markdown text optimized for LLM consumption. Same reliability as fetch_url but returns only the markdown content, stripping HTML, scripts, and noise. Best for whe…
Check the health status of a domain. Returns the circuit breaker state: 'closed' (healthy), 'open' (failing), or 'half_open' (testing recovery). Use this before batch operations to avoid …
Get cache statistics — size and item count. Useful for monitoring cache utilization and deciding when to clear.
Clear the entire fetch cache. Use when you need fresh data and don't want to rely on cached results.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"steadyfetch": {
"url": "https://steadyfetch-production.up.railway.app/mcp",
"transport": "streamable-http"
}
}
}