parad0x-mcp-server

parad0x-mcp-server is a skill for Claude Code, Codex from Parad0x-Labs/openclaw-skills. It costs 66 tokens per session (533 once invoked), scanned A, original, MIT.

A tool server that gives compatible AI agents access to Parad0x Labs services for payments, blockchain records, identity checks, and receipt handling.

In plain words
What is it for?
Use it to quote x402-protected API payments, anchor receipt hashes on Solana, check Dark Passport links, create outcome receipts, compress receipts, and discover live program addresses.
Why use it?
It gathers these operations behind one interface so an agent can request payment details, verify identities, and create or preserve records.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to quote x402-protected API payments, anchor receipt hashes on Solana, check Dark Passport links, create outcome receipts, compress receipts, and discover live program addresses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parad0x-labs/openclaw-skills/mcp-server
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Parad0x-Labs/openclaw-skills --skill mcp-server
Clone the repo
git clone --depth 1 https://github.com/Parad0x-Labs/openclaw-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for parad0x-mcp-server

README.md
[![agentmods](https://agentmods.dev/badge/skills/parad0x-labs/openclaw-skills/mcp-server/github.svg)](https://agentmods.dev/skills/parad0x-labs/openclaw-skills/mcp-server)
Your own site
<a href="https://agentmods.dev/skills/parad0x-labs/openclaw-skills/mcp-server"><img src="https://agentmods.dev/badge/skills/parad0x-labs/openclaw-skills/mcp-server/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for parad0x-mcp-server

Your own site · 80×15
<a href="https://agentmods.dev/skills/parad0x-labs/openclaw-skills/mcp-server"><img src="https://agentmods.dev/badge/skills/parad0x-labs/openclaw-skills/mcp-server.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 533 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 41
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.00533
Opus 5 $0.00033 $0.00267
Sonnet 5 $0.00013 $0.00107
Haiku 4.5 $0.00007 $0.00053

Measured 11d ago against content hash 34a0eafbbc28, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

parad0x-mcp-server scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (src/anchor.ts, src/index.ts, src/resolve.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/mcp-server/SKILL.md · 66 lines

What it actually says

Parad0x Labs MCP Server

Exposes the Parad0x Labs web0 stack as MCP tools. Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible agent runtime.

When to use

  • Your agent needs to quote, pay, or verify an x402-gated API call.
  • You want to anchor a receipt hash on Solana mainnet-beta.
  • You need to look up whether a wallet or ETH address has a verified Dark Passport.
  • You want to compress a batch of receipts or check live program addresses.

Tools

Tool Does
x402_get_quote Get a payment quote for an x402-gated API endpoint
anchor_receipt Anchor a 32-byte receipt hash on Solana mainnet-beta via receipt_anchor
lookup_passport Check if an ETH address or Solana wallet has a verified Dark Passport binding
build_outcome_receipt Build a signed outcome receipt with PnL, accuracy, or delivery result
compress_receipts Compress a batch of receipts (Liquefy format)
get_stack_status Discover Parad0x Labs mainnet-beta program addresses

Install

npm install -g @parad0x_labs/mcp-server

Or use directly without installing:

npx @parad0x_labs/mcp-server

Claude Desktop config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "parad0x": {
      "command": "npx",
      "args": ["-y", "@parad0x_labs/mcp-server"],
      "env": {
        "SOLANA_RPC_URL": "https://solana-rpc.publicnode.com"
      }
    }
  }
}

Source

github.com/Parad0x-Labs/openclaw-skills/tree/main/skills/mcp-server

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 66 lines · 66 tokens per session scan A 34a0eafbbc28

Subscribe to this mod's changes

parad0x-mcp-server is a skill published in the GitHub repository Parad0x-Labs/openclaw-skills (22 stars, last pushed 8d ago), licensed MIT. It adds 66 tokens to every session and 533 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.