Skip to content
Back to search
100
MCP live v0.1.1 streamable-http

SteadyFetch

io.github.carsonroell-debug/steadyfetch

Reliable web fetching for AI agents with retry, circuit breaker, caching, and anti-bot bypass

Uptime
2.4%
42 probes
Response
101ms
last probe
Tools
5
callable
Resources
0
readable
Prompts
0
available

Tools · 5

fetch_url

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_markdown

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_domain

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 …

cache_stats

Get cache statistics — size and item count. Useful for monitoring cache utilization and deciding when to clear.

clear_cache

Clear the entire fetch cache. Use when you need fresh data and don't want to rely on cached results.

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"
    }
  }
}