SuVerse MCP Server
Provides tools for analyzing Solana wallets and tokens, including wallet reputation assessment and token safety checks, by paying per call via x402 protocol.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SuVerse MCP ServerParse the rate con at ~/Downloads/load_4471.pdf"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@suverselabs/mcp-server
An MCP server that gives Claude Desktop (or any MCP client) 15 tools for SuVerse's pay-per-call US-government and freight APIs. Calls are paid automatically, per request, in USDC on Base via the x402 protocol — you fund a wallet once and Claude pays as it works. Your private key never leaves your machine.
✅ Published on npm: https://www.npmjs.com/package/@suverselabs/mcp-server
Quick Start
Install via npx (no local build needed):
npx -y @suverselabs/mcp-serverClaude Desktop Setup
Add to claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"suverse": {
"command": "npx",
"args": ["-y", "@suverselabs/mcp-server"],
"env": {
"SUVERSE_BASE_PRIVATE_KEY": "0xYOUR_PRIVATE_KEY_HERE"
}
}
}
}The private key controls a Base wallet that pays for tool calls in USDC. Fund it with ~$5-10 USDC on Base. You don't need ETH for gas — Base settlements are gas-sponsored. Check your balance anytime with the free suverse_balance tool.
Restart Claude Desktop. The 15 SuVerse tools will appear in Claude's tool list.
Related MCP server: Logistics AI MCP
What is SuVerse?
SuVerse is an x402 gateway over 128 US-government data services (SEC, NPS, FBI, CMS, …) plus a freight document/routing suite. Each call costs a few tenths of a cent up to $0.50; there are no accounts or API keys — you pay per call in USDC.
Why MCP?
Without this server you'd hand-roll x402 payments to call SuVerse. With it, the endpoints appear as native Claude tools: ask in plain language and Claude calls them, paying transparently from your funded Base wallet.
Tools
Paid (per-call USDC on Base)
Tool | Price | Purpose |
| $0.10 | Rate confirmation → JSON |
| $0.15 | Bill of Lading / POD → JSON |
| $0.05 | Fuel receipt → JSON (IFTA) |
| $0.07 | IRS W-9 → JSON |
| $0.08 | ACORD 25 COI → JSON |
| $0.25 | Oversize/overweight permit → JSON |
| $0.50 | Truck-legal routing + tolls + POIs |
| $0.10 | Toll estimate for a polyline |
| $0.01 | GPS trip analytics |
| $0.005 | Any of 128 gov services by id |
| $0.01 | CMS Open Payments by NPI |
| $0.01 | FBI crime stats by state/year |
Free (no payment)
Tool | Purpose |
| Discover the 128 |
| Price one or many calls before running them |
| On-chain USDC balance + calls remaining per tool |
| Search every x402 endpoint SuVerse knows about (own + CDP Bazaar mirror) |
Aggregated verdicts (x402, custody-free — the server never pays)
Tool | Price | Question it answers |
| $0.10 | What regime is the crypto market in right now? |
| $0.03 | Can this Solana wallet's trading be trusted or copied? |
| $0.05 | Is this Solana token sane to enter right now? |
These three work differently from the paid tools above: this server does not
pay for them and holds no keys for them. Called without payment they return a
structured payment_required result — what the endpoint answers, the price, and
the verbatim x402 challenge (accepts on Base, Solana, and Cosmos Noble, all
USDC). Your agent (or its runtime) decides whether to pay: sign one of the
accepts with any x402 buyer client (e.g. @suverselabs/x402-client) and call
the tool again with payment_signature set to the base64 header value — it is
forwarded as PAYMENT-SIGNATURE / X-PAYMENT and the full paid verdict
({verdict, signals, data_quality, raw}) comes back. Wallet and mint arguments
are validated as base58 client-side before any network call.
Usage examples
"Parse the rate con at
~/Downloads/load_4471.pdf." →freight_parse_ratecon(file_path)"What gov services can you call?" →
gov_list_services"How much would parsing 10 BOLs cost?" →
suverse_estimate_cost"What's my SuVerse balance?" →
suverse_balance"Get Apple's SEC company info." →
gov_query(service: "sec.company_info")
file_path inputs
Document tools accept a local file_path — the server reads the file, verifies
it's really a PDF/image via magic bytes, and base64-encodes it. No need to paste
base64 into the chat.
Cost transparency & safety
Every paid tool's description states its price;
suverse_estimate_costprices ahead of time.Hard cap: a single call never settles for more than
SUVERSE_MAX_PAYMENT_USDC(default $0.60) and never more than the tool's published price — whichever is lower.Client-side idempotency: an identical repeat within a short window returns the cached response instead of paying twice (complements SuVerse's server-side idempotency).
Security
SUVERSE_BASE_PRIVATE_KEYis read from the environment, used only to sign EIP-3009 USDC authorizations locally, and never logged or transmitted anywhere except as a signed payment header to SuVerse.All diagnostics go to stderr (stdout is the MCP protocol channel).
file_pathreads are restricted to your home directory (override withSUVERSE_ALLOW_PATHS_OUTSIDE_HOME=true), reject sensitive locations (.ssh,.aws,credentials, key files, …), and are content-type verified.
Data sent off your machine
The document-parsing tools work by uploading the file's contents (base64-encoded,
or whatever you pass via pdf_base64 / image_base64 / text) to api.suverse.io,
where they're parsed. So while your private key never leaves your machine, the
documents you ask Claude to parse do. Only pass files you're comfortable sending to
SuVerse for processing. The file_path guards above (home-directory restriction,
sensitive-location denylist, magic-byte type check) limit which files can be read,
but any file you do parse is transmitted. The free tools (gov_list_services,
suverse_estimate_cost, suverse_balance) and the on-chain balance read send no
file data.
Configuration reference
Env var | Default | Notes |
| — | Required. 0x Base private key. |
|
| |
|
| Hard per-call ceiling. |
| viem default | For |
|
| Allow |
|
| Client idempotency window. |
Development
For contributors / running from source. End users should use the npx Quick Start above instead.
git clone https://github.com/sudzikcoin/suverse-mcp && cd suverse-mcp
npm install
npm run typecheck # tsc --noEmit
npm test # vitest (mocked HTTP)
npm run build # tsup → dist/index.js
npm run dev # run from source (tsx)To run a local build in Claude Desktop, point command/args at the built file instead of npx:
{
"mcpServers": {
"suverse": {
"command": "node",
"args": ["/absolute/path/to/suverse-mcp/dist/index.js"],
"env": { "SUVERSE_BASE_PRIVATE_KEY": "0xYOUR_PRIVATE_KEY_HERE" }
}
}
}License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Alicense-qualityFmaintenanceProvides onchain tools for Claude AI to interact with the Base blockchain and Coinbase API, enabling wallet management, fund transfers, and smart contract deployment.Last updated83353MIT- Alicense-qualityAmaintenanceProvides supply chain and shipping tools including shipment tracking, route optimization, warehouse inventory management, delivery ETA estimation, and customs documentation. Enables logistics operations through natural language interactions with Claude.Last updated27MIT
- Alicense-qualityCmaintenanceEnables AI agents to access paid tools like crypto prices, weather, translation, and web intelligence via per-request USDC payments on Base, with no API keys or subscriptions.Last updated67MIT
- Flicense-qualityDmaintenanceProvides Claude AI with direct access to Everclear.org's API endpoints for querying intents, invoices, analytics, and performing blockchain operations.Last updated
Related MCP Connectors
30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.
Pay-per-call web scraping for AI agents via x402 on Base USDC. Six tools, no signup.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sudzikcoin/suverse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server