Klawfetch
БесплатноНе проверенA geo-distributed HTTP proxy for AI agents, enabling web fetching from multiple global regions (Frankfurt, Sydney, New York, San Francisco) with support for scr
Описание
A geo-distributed HTTP proxy for AI agents, enabling web fetching from multiple global regions (Frankfurt, Sydney, New York, San Francisco) with support for screenshots, scraping, and JS rendering.
README
Your agent can't see the web from Tokyo. Now it can.
KlawFetch is a geo-distributed HTTP proxy built for AI agents. Fetch web content from Frankfurt, Sydney, New York, or San Francisco — with one API call.
This MCP server gives any Claude, OpenAI, or MCP-compatible agent instant access to KlawFetch's full capabilities.
Quick Start
# Install and run (needs Node.js 18+)
npx @klawfetch/mcp-server
Set your API key:
KLAWFETCH_API_KEY=your_key npx @klawfetch/mcp-server
Get an API key at klawkeeper.xyz
Add to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"klawfetch": {
"command": "npx",
"args": ["@klawfetch/mcp-server"],
"env": {
"KLAWFETCH_API_KEY": "your_key_here"
}
}
}
}
Restart Claude Desktop. Your agent now has geo-distributed web access.
Add to OpenAI / Other MCP Clients
Any MCP-compatible client works:
{
"mcpServers": {
"klawfetch": {
"command": "npx",
"args": ["@klawfetch/mcp-server"],
"env": {
"KLAWFETCH_API_KEY": "your_key_here"
}
}
}
}
Tools
fetch_url
Fetch any URL from a specific global region.
"Fetch https://example.com from Frankfurt"
"GET the homepage of news.ycombinator.com from Sydney"
"POST to https://api.example.com/data with body {key: value}"
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
url |
string | (required) | URL to fetch |
method |
string | GET |
HTTP method |
headers |
object | — | Custom headers |
body |
any | — | Request body |
region |
string | auto | eu-frankfurt, ap-sydney, us-west, us-east |
follow_redirects |
boolean | true |
Follow redirects |
timeout |
number | 30000 |
Timeout in ms |
parse_json |
boolean | false |
Parse response as JSON |
screenshot
Capture a visual screenshot of any web page.
"Screenshot https://example.com at 1920x1080"
"Take a full-page screenshot of the dashboard"
scrape
Extract structured data using CSS selectors.
"Scrape all h2 titles and .price elements from https://shop.example.com"
render
Fetch with full JavaScript rendering (for SPAs/dynamic content).
"Render https://spa-app.com and wait for network idle"
list_regions
Check which regions are online.
"What KlawFetch regions are available?"
Direct API Usage (no MCP)
curl
# Fetch a URL from Frankfurt
curl -X POST https://klawfetch.xyz/v1/fetch \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "region": "eu-frankfurt"}'
Python
import requests
response = requests.post(
"https://klawfetch.xyz/v1/fetch",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={"url": "https://example.com", "region": "eu-frankfurt"}
)
data = response.json()
print(f"Status: {data['status']}, Body: {data['body'][:200]}")
TypeScript / Node.js
const res = await fetch("https://klawfetch.xyz/v1/fetch", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://example.com",
region: "eu-frankfurt",
}),
});
const data = await res.json();
console.log(`Status: ${data.status}, Body: ${data.body.slice(0, 200)}`);
Available Regions
| Region | ID | Location |
|---|---|---|
| 🇩🇪 Frankfurt | eu-frankfurt |
Germany |
| 🇦🇺 Sydney | ap-sydney |
Australia |
| 🇺🇸 San Francisco | us-west |
California |
| 🇺🇸 New York | us-east |
New York |
Check real-time status: GET https://klawfetch.xyz/v1/regions
Pricing
| Operation | Credits |
|---|---|
| Fetch | 2 credits |
| Screenshot | 10 credits |
| Scrape | 5 credits |
| JS Render | 15 credits |
~1,000 simple fetches for $1. All regions included.
Free tier: 100 requests/day, no credit card required.
Get credits at klawkeeper.xyz. Pay with USDC, BTC, or card.
Why KlawFetch?
The problem: Your AI agent runs in us-east-1. Every web request comes from the same IP block. Sites geo-restrict content, rate-limit your region, or serve different data based on location.
The solution: KlawFetch routes requests through VPS nodes in 4 global regions. Your agent sees the web the way a human in Frankfurt, Sydney, or San Francisco would.
- 🌍 4 regions — fetch from where your users are
- ⚡ Sub-300ms — optimized proxy, not a browser farm
- 🔒 No IP leaking — your agent's identity stays hidden
- 📸 Screenshots + JS rendering — see what humans see
- 🤖 Built for agents — MCP-native, API-first, pay-per-request
Environment Variables
| Variable | Description |
|---|---|
KLAWFETCH_API_KEY |
Your KlawKeeper API key (required) |
KLAWFETCH_API_BASE |
Custom API base URL (default: https://klawfetch.xyz) |
License
MIT
Links
- API Docs: klawfetch.xyz
- Get API Key: klawkeeper.xyz
- Full Stack: klawstack.xyz
Установка Klawfetch
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/novalis78/klawfetch-mcp-serverFAQ
Klawfetch MCP бесплатный?
Да, Klawfetch MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Klawfetch?
Нет, Klawfetch работает без API-ключей и переменных окружения.
Klawfetch — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Klawfetch в Claude Desktop, Claude Code или Cursor?
Открой Klawfetch на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Klawfetch with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
