x402-mcp
MCP server for the x402 protocol that lets AI agents discover and call payment-gated HTTP APIs automatically.
README
x402-mcp
MCP server for the x402 protocol. Lets AI agents (Claude, Cursor, etc.) discover and call payment-gated HTTP APIs automatically.
Repository: merkleworks/x402-mcp
MCP Server
This repository provides a Model Context Protocol (MCP) server that enables AI agents to call payment-gated HTTP APIs using the x402 protocol.
Tools exposed:
x402_http_request— Execute HTTP requests to APIs requiring payment via the x402 protocol. If the server returns 402, the tool parses the challenge, constructs the payment, retries with proof, and returns the final response.
Example agent flow:
agent → tool call → x402_http_request → 402 challenge → payment → retry → response
Automatic discovery: The server is discoverable by MCP-aware frameworks without manual registry submission:
- Repository descriptor: mcp.json at the repo root (name, description,
install: npx x402-mcp, tools). - npm: Run with
npx x402-mcp; package keywords includemcp,model-context-protocol,ai-tools,x402. - Well-known: .well-known/mcp.json can be hosted at
https://demo.x402.merkleworks.io/.well-known/mcp.jsonfor domain-based discovery.
Overview of x402
x402 is a protocol that gates HTTP APIs behind micropayments using HTTP 402 Payment Required:
- Request — Client calls the API.
- 402 challenge — Server responds with
402 Payment Requiredand anX402-Challengeheader (nonce UTXO, price, payee, expiry). - Payment — Client builds a BSV transaction, delegates fees (optional), and broadcasts.
- Retry — Client retries the request with an
X402-Proofheader. - Response — Server verifies the proof and returns the API response.
This flow lets APIs charge per request in satoshis without pre-registration or cards.
What this MCP server does
This server exposes Model Context Protocol (MCP) tools so AI agents can:
paid_http_request— Send an HTTP request; if the server returns 402, run the full x402 flow (parse challenge → pay → retry with proof) and return the final response. Primary tool for calling payment-gated APIs.discover_x402_api— List payable endpoints (from/.well-known/x402or by probing for 402).pay_x402_endpoint— Call a known x402 endpoint with full control (method, body, headers, delegator).parse_x402_challenge— Decode anX402-Challengeheader.verify_x402_proof— Check anX402-Proofagainst a challenge and request.
Agents use paid_http_request for a single “call this URL; pay if 402” step.
Installation
Run with a single command (recommended):
npx x402-mcp
Or install globally:
npm install -g x402-mcp
x402-mcp
From source:
git clone https://github.com/merkleworks/x402-mcp.git
cd x402-mcp
npm install
npm run build
npm start
Usage example
Agent → tool call → x402_http_request → x402 flow (if 402) → API response
- The agent calls the tool with
url,method, and optionalheadersandbody. - The server sends the HTTP request.
- If the response is 402, the server parses the challenge, builds the payment, delegates/broadcasts, then retries with the proof.
- The tool returns the final response (status, body, and payment txid if paid).
Example tool call
Tool: x402_http_request
Input schema:
| Field | Type | Required | Description |
|---|---|---|---|
url |
string | yes | Full URL of the API endpoint |
method |
string | no | HTTP method (default: GET) |
headers |
object | no | Optional HTTP headers (key-value strings) |
body |
string or object | no | Optional request body (string or JSON object) |
Example (GET):
{
"tool": "x402_http_request",
"input": {
"url": "https://demo.x402.merkleworks.io/v1/expensive",
"method": "GET"
}
}
Example (POST with JSON body):
{
"tool": "x402_http_request",
"input": {
"url": "https://api.example.com/v1/query",
"method": "POST",
"headers": { "Content-Type": "application/json" },
"body": { "query": "example" }
}
}
More examples: examples/, including example_agent_call.json.
Connecting from AI clients
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"x402": {
"command": "npx",
"args": ["@merkleworks/x402-mcp"]
}
}
}
Or with a local build:
{
"mcpServers": {
"x402": {
"command": "node",
"args": ["/path/to/x402-mcp/dist/server.js"]
}
}
}
Claude Desktop / Claude Code
Add to your MCP config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"x402": {
"command": "npx",
"args": ["@merkleworks/x402-mcp"]
}
}
}
Generic MCP client (Node.js)
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const transport = new StdioClientTransport({
command: "npx",
args: ["@merkleworks/x402-mcp"],
});
const client = new Client({ name: "my-agent", version: "1.0.0" });
await client.connect(transport);
const result = await client.callTool("paid_http_request", {
url: "https://demo.x402.merkleworks.io/v1/expensive",
method: "GET",
});
console.log(result);
Tools reference
| Tool | Description |
|---|---|
paid_http_request |
Execute HTTP request; if 402, run x402 flow and return final response |
discover_x402_api |
Discover payable endpoints (/.well-known/x402 or probe) |
pay_x402_endpoint |
Call x402 endpoint with full control (delegator, broadcast URL, etc.) |
parse_x402_challenge |
Decode X402-Challenge header |
verify_x402_proof |
Verify X402-Proof against challenge and request |
Protocol summary
- Client requests a protected endpoint.
- Server responds 402 with
X402-Challenge. - Client builds a BSV tx, optionally uses a delegator for fees, then broadcasts.
- Client retries with
X402-Proof. - Server verifies and returns the response.
This MCP server implements that flow so agents can pay for API calls without manual steps.
Configuration
pay_x402_endpoint(and thuspaid_http_requestwhen it pays) use the same origin as the request URL for the delegator by default. Override withdelegator_url/broadcast_urlwhen usingpay_x402_endpointdirectly.- Discovery manifest format: protocol spec and
/.well-known/x402.
Examples
- example_agent_call.json — Example
paid_http_requestcall for agents. - discover-and-pay — Discover endpoints then pay and call the first. Run:
npx tsx examples/discover-and-pay.ts https://your-x402-api.example.com
MCP registry (mcp.json)
The repo includes mcp.json for MCP registries (e.g. mcp.so): name, description, repository, install command, and tool list.
License
Apache-2.0
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.