# superhighway-mcp [Health: Active]

**Category:** 💰 Finance & Fintech  
**Repository:** https://github.com/patwalls/superhighway-mcp  
**GitHub Stars:** 1  
**npm Downloads (last month):** 251  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/superhighway-mcp

## Description
Web tools for AI agents (search, scrape, geocode +8) paid per call in USDC via x402. No API key.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "superhighway-mcp": {
    "command": "npx",
    "args": ["-y","github:patwalls/superhighway-mcp"]
  }
}
```

## Documentation & README

# superhighway-mcp

**Web search for AI agents that pays for itself.**

An MCP server that gives any MCP-speaking agent (Claude Desktop, etc.) a real-time
web search tool. Under the hood it pays [Superhighway](https://api-production-17e1.up.railway.app)
**$0.001 per search in USDC** via the [x402](https://x402.org) protocol, using *your*
wallet — no API key, no signup, no human in the loop.

## Install

Add to your MCP client config (e.g. Claude Desktop's `claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "superhighway": {
      "command": "npx",
      "args": ["-y", "github:patwalls/superhighway-mcp"],
      "env": {
        "AGENT_PRIVATE_KEY": "0xYOUR_FUNDED_BASE_WALLET_KEY",
        "X402_NETWORK": "base"
      }
    }
  }
}
```

Restart your client. The agent now has three tools that do the whole search job — **web_search** (live, ranked results), **news_search** (recent articles with dates), and **scrape** (read any URL as clean markdown). Find it, read it, pay per call.

## Wallet

`AGENT_PRIVATE_KEY` is a wallet you control, funded with a little **USDC on Base**
(each search costs $0.001; gas is covered by the facilitator, so you don't need ETH).
The key only ever signs tiny USDC payments — keep it to a small balance.

Want to try free first? Set `X402_NETWORK=base-sepolia` and fund the wallet from a
[Base Sepolia faucet](https://faucet.circle.com) to pay in test USDC.

## What you get

`web_search` (web) and `news_search` (recent news) each return results as JSON:

```json
{ "query": "...", "count": 5, "results": [ { "title": "...", "url": "...", "description": "..." } ] }
```

---

Powered by [Superhighway](https://api-production-17e1.up.railway.app) — the web-search API agents pay for.

