Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Region Fetch
R
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 4:16:31 PM

Region Fetch

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Fetch any public URL as a visitor in a chosen country, with a signed receipt of its origin.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "region-fetch": {
      "command": "npx",
      "args": [
        "-y",
        "regionfetch-mcp"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Region Fetch

CI License: MIT Node

Pre-release. Neither package is published to npm yet, so the install commands below do not work today β€” build from source (see Development). The hosted API at regionfetch.dev is live.

Fetch a public HTTPS URL as a visitor in a specific country would see it, and get a signed receipt proving where the retrieval actually came from.

One request. One x402 payment. One Ed25519-signed attestation of the exit country, supplier, final URL, and content hash.

This repository holds the public client packages:

PackagenpmWhat it is
regionfetchnpm i regionfetchTypeScript SDK β€” fetch, recover, verify
regionfetch-mcpnpx regionfetch-mcpMCP server exposing one regionfetch tool

The service itself runs at https://regionfetch.dev.


Quick start

Terminal
npm install regionfetch
server.ts
import { RegionFetchClient } from "regionfetch";

const client = new RegionFetchClient();

const result = await client.fetchUrl(
  { url: "https://example.com/pricing", country: "DE", mode: "browser" },
  { paymentSignature },
);

console.log(result.data.body);
console.log(result.receipt.attestation.payload.country); // "DE"

Supported countries and modes

Countries: US, DE, JP, BR, IN. Anything else is rejected locally before a payment is created.

ModeWhat it does
http (default)Direct proxied GET with a country-appropriate locale, user agent, and Accept-Language. Follows up to five redirects, revalidating each target.
browserHeadless Chromium through the regional proxy, with a country-appropriate locale, timezone, viewport, and user agent. Waits for domcontentloaded and returns rendered HTML.

Escalation tiers

max_tier caps how hard the service will work to retrieve a blocked page: L0 and L1 use the standard regional supplier, L2 permits escalation to a managed unblocker and costs more. Defaults to L1.

The client never assumes a price β€” it authorizes exactly the amount the deployment returns in its challenge, so a dearer tier needs no client change. L3 is not a supported capability and is rejected before any payment is created.

L2 is priced higher than L0/L1 β€” $0.05 against $0.02 at the time of writing β€” and the price comes from the challenge, never from the client.

Pricing

The default list price is $0.02 USDC per request on Base (eip155:8453). Price, network, timeout, and response-size limits are deployment-controlled β€” read them from the 402 challenge rather than hardcoding them.


Paying

Use the scoped @x402/* packages, not x402 or x402-fetch

This matters more than it looks. The deployment speaks x402 protocol v2:

  • CAIP-2 networks (eip155:8453), not chain names (base)
  • an amount field, not maxAmountRequired
  • the challenge in a PAYMENT-REQUIRED response header, with an empty body
  • a PAYMENT-SIGNATURE request header, not X-PAYMENT

The unscoped x402 and x402-fetch packages on npm are v1 only. They parse the challenge from the response body, hardcode x402Versions = [1], reject a CAIP-2 network at the schema, and send X-PAYMENT. They cannot pay this API.

Install the v2 stack:

Terminal
npm install regionfetch @x402/core @x402/evm viem

Wallet mode β€” a fresh authorization per request

server.ts
import { RegionFetchClient } from "regionfetch";
import { createX402PaymentProvider } from "regionfetch/x402";

const paymentProvider = await createX402PaymentProvider({
  privateKey: process.env.WALLET_KEY,
  maxAmountPerPayment: "$0.10", // per-payment ceiling; default is $0.10
});

const client = new RegionFetchClient({ paymentProvider });
const result = await client.fetchUrl({ url: "https://example.com/", country: "JP" });

The SDK sends one unpaid probe, reads the challenge from the header, asks the provider for exactly one authorization, and retries once. It will never mint a second payment for one logical fetch β€” if the paid attempt is still refused, you get an error rather than a second charge.

Explicit mode β€” you already hold an authorization

ts
await client.fetchUrl(input, { paymentSignature });

One authorization funds one durable request. Reusing it for a different body is rejected. Resending the identical body with the identical authorization after a dropped connection is the correct recovery β€” see below.

Bring your own wallet

paymentProvider is a one-method interface, so you are not tied to viem or to any particular custody model:

server.ts
const paymentProvider = {
  async createPayment({ paymentRequired, resourceUrl }) {
    return myWalletService.authorize(paymentRequired, resourceUrl);
  },
};

Verifying receipts

Every terminal outcome β€” success and paid failure β€” carries a signed receipt.

server.ts
import { verifyReceipt } from "regionfetch";

const key = await client.getAttestationKey();

const verification = verifyReceipt(result.receipt, {
  expectedKeyId: key.keyId,
  expectedPublicKeyPem: key.publicKeyPem,
  responseBody: result.data.body,
});

verification.valid; // true only if every check that ran passed

Four independent checks, because a valid signature alone proves less than it appears to:

CheckWhat it rules out
signatureValidTampering with the signed bytes
payloadMatchesA payload edited after signing, leaving payloadCanonical intact
receiptFieldsMatchConvenience fields at the receipt root disagreeing with what was signed
bodyHashMatchesA body swapped in transit
keyMatchesExpectationA self-consistent receipt minted with someone else's key

Two things the implementation is strict about:

  • Verification uses payloadCanonical verbatim. Re-serializing attestation.payload can produce different bytes and either fails spuriously or, worse, masks a mismatch.
  • The key's real type is checked, not its label. attestation.algorithm is attacker-controlled text; an RSA key presented as "Ed25519" is rejected.

Without a pinned or independently retrieved key, verification proves internal consistency only β€” anyone can mint a self-consistent receipt with their own key. Pass expectedKeyId / expectedPublicKeyPem when you need origin trust.


Errors and recovery

server.ts
import { RegionFetchApiError } from "regionfetch";

try {
  await client.fetchUrl(input, { paymentSignature });
} catch (error) {
  if (error instanceof RegionFetchApiError && error.isPaidFailure) {
    // Payment settled; the attempt failed terminally. Keep the receipt β€”
    // it is the evidence that the paid attempt happened.
    await store(error.receipt);
  }
}
StatusMeaningWhat the SDK does
400Invalid body, country, mode, or targetThrows. Do not retry unchanged.
402Payment absent or unverifiedThrows RegionFetchPaymentRequiredError with the decoded challenge
409Same payment already processingRetries the identical request with the same authorization
429Rate limitedRetries with exponential backoff, honouring Retry-After
502 / 504Terminal paid failureThrows with the signed receipt attached. Never retried.
503Service or dependency unavailableThrows. Not retried by default.

Default policy: two retries, exponential backoff with jitter, Retry-After respected. Configure with retry: { maxRetries, baseDelayMs, maxDelayMs }.

After an ambiguous failure

If the connection drops after you sent a payment, do not create a second payment β€” but be aware that resending the identical authorization will not recover the result either. x402 exact uses EIP-3009, whose nonce is spent on-chain at settlement, so a settled payment is refused with 402 rather than replayed. Resending is harmless (it cannot charge twice), it just will not work.

The reliable recovery is the status endpoint, so capture requestId from every response you do receive:

server.ts
const state = await client.getRequest(requestId);
state.statusMeaning
succeeded / failedTerminal. A stored failure arrives as HTTP 200, with the detail in the receipt.
settling / executingStill in flight.
unresolvedExecution may have happened but was never persisted. The server will not re-run it β€” that could duplicate an external effect after payment. Reconcile against the settlement transaction.

Local validation is load-bearing

The deployment's payment gate runs ahead of body validation: an unpaid request with country: "ZZ" still answers 402, not 400. So the SDK validates input before touching the network β€” otherwise you would mint an authorization for a request the server then rejects.

Checked locally: HTTPS-only, URL length ≀ 2048, known country, known mode, no unknown fields, and obvious loopback/private targets. The server remains authoritative for DNS resolution and the real public-target policy.


MCP server

Terminal
npx -y regionfetch-mcp
config.json
{
  "mcpServers": {
    "regionfetch": {
      "command": "npx",
      "args": ["-y", "regionfetch-mcp"],
      "env": {
        "REGION_FETCH_BASE_URL": "https://regionfetch.dev",
        "REGION_FETCH_WALLET_PRIVATE_KEY": "0x...",
        "REGION_FETCH_MAX_PAYMENT": "$0.10"
      }
    }
  }
}

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • T
    Tldraw

    Draw and visually collaborate with your agents on tldraw's canvas.

    πŸ’» Developer Tools0 views
    Compare vs Tldraw β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • Absolutejs MCP logoAbsolutejs MCP

    Search verified agents in the signed AbsoluteJS public registry.

    πŸ’» Developer Tools0 views
    Compare vs Absolutejs MCP β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Region Fetch

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "region-fetch": { "command": "npx", "args": ["-y", "Region Fetch"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewRegion Fetch AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/region-fetch?style=directory)](https://allmcps.com/mcp/region-fetch)
HTML Embed
<a href="https://allmcps.com/mcp/region-fetch"><img src="https://allmcps.com/api/badge/region-fetch?style=directory" alt="Region Fetch on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 1, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit7d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Sep 1, 2026
40Quality signal: Fair Β· 40/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

Supply-chain signal

No high-severity advisories surfaced by our automated scan.

Critical 0High 0Medium 0Low 0

Scanned 2d ago via OSV.dev Β· regionfetch-mcp (npm)

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Region Fetch β†’Install in Claude DesktopInstall in CursorInstall in VS Code