CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Hyperd Mcp

hyperd-ai/hyperd-mcp
1authSTDIOregistry active
Summary

Connects Claude to hyperD's x402 API with 23 pre-trade DeFi intelligence tools running on a pay-per-call model. Each request triggers an HTTP 402 payment challenge that the server settles automatically with EIP-3009 USDC transfers on Base, charging between $0.005 and $0.10 per endpoint. You get token security scores, wallet risk analysis, DEX quotes, liquidation risk checks, PnL calculations, and governance summaries without subscriptions or API keys. First five calls per IP are free daily to try before you commit a hot wallet. Useful when you want Claude to surface on-chain intelligence during research or trading prep without manually wiring up multiple DeFi data providers. Works in Claude Desktop, Cursor, Cline, or any MCP-compatible client via stdio transport.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

hyperD MCP Server

Exposes 24 paid hyperD x402 tools — 17 data/risk endpoints, 6 premium synthesis verdicts ($0.30–$1.50), and a multi-call bundle — plus 3 free meta tools (and 3 watch tools when enabled) from api.hyperd.ai. Drop into Claude Desktop, Cursor, Cline, Zed, or any MCP-compatible client.

What it does

Each tool call:

  1. Sends a request to the corresponding api.hyperd.ai endpoint
  2. Receives an HTTP 402 with payment requirements
  3. Signs an EIP-3009 USDC transfer authorization with your wallet
  4. Retries with the payment header
  5. Returns the data to the AI assistant

You pay $0.005–$1.50 in USDC on Base per call — data/risk endpoints $0.005–$0.10, premium synthesis verdicts $0.30–$1.50. No subscription. No accounts.

Try it free

First 5 calls per IP per 24h are free — no wallet, no signup, no API key. Just curl:

curl "https://api.hyperd.ai/api/balance?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

Lifetime cap: 10 calls per IP. After that (or when daily quota is exhausted), the endpoint returns HTTP 402 — sign a small EIP-3009 USDC payment on Base via the Python SDK or TypeScript MCP server. The premium synthesis tier ($0.30+) always requires payment — it is not free-tier eligible.

/api/wallet/pnl has a tighter free-tier cap of 1 call/IP/day (heavy upstream).

What you need

  • A wallet with at least $0.30 USDC on Base (the seed cost for trying every tool once is ~$0.62)
  • The wallet's private key OR 12-word BIP-39 mnemonic
  • Node 20+ installed

Install + configure

Step 1 — Generate or use an existing wallet

For testing, use a fresh wallet, not your main one. A simple way:

node -e "const {generatePrivateKey, privateKeyToAccount} = require('viem/accounts'); const pk = generatePrivateKey(); console.log('Address:', privateKeyToAccount(pk).address); console.log('Private key:', pk);"

Send ~$1 of USDC on Base to the printed address.

Step 2 — Claude Desktop

Edit your Claude Desktop config (location: macOS ~/Library/Application Support/Claude/claude_desktop_config.json, Windows %APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "hyperd": {
      "command": "npx",
      "args": ["-y", "hyperd-mcp"],
      "env": {
        "HYPERD_WALLET_PRIVATE_KEY": "0xYOUR_PRIVATE_KEY_HERE"
      }
    }
  }
}

Restart Claude Desktop. The hyperD tools appear in the conversation tool list.

Step 3 — Try it

Ask Claude in any conversation:

"What's the security score for USDC on Base? Use the hyperd.token.security tool."

Claude calls our endpoint, pays $0.05 from your wallet, returns the result. The whole flow takes ~2 seconds.

Cursor / Cline / Zed

Each MCP-compatible client has a similar config file. Same pattern: name the server hyperd, command is npx -y hyperd-mcp, set HYPERD_WALLET_PRIVATE_KEY env var.

For the full MCP client list and per-client config docs see https://modelcontextprotocol.io/clients.

Local-development install (without npm publish)

If you want to run from source instead of npx:

git clone https://github.com/hyperd-ai/hyperd-mcp.git
cd hyperd-mcp
npm install
npm run build

Then in your Claude Desktop config, point at the local build:

{
  "mcpServers": {
    "hyperd": {
      "command": "node",
      "args": ["/full/path/to/hyperd-mcp/dist/server.js"],
      "env": {
        "HYPERD_WALLET_PRIVATE_KEY": "0xYOUR_PRIVATE_KEY_HERE"
      }
    }
  }
}

Available tools

ToolPriceWhat it does
hyperd.balance.get$0.01Multi-chain ERC-20 + native balance lookup
hyperd.yield.recommend$0.05Opinionated DeFi yield recommendation
hyperd.token.info$0.01Aggregated token metadata (CoinGecko + DefiLlama)
hyperd.token.security$0.05GoPlus-backed security risk score
hyperd.wallet.risk$0.10Chainalysis sanctions + GoPlus heuristics
hyperd.protocol.tvl$0.01DefiLlama protocol health
hyperd.gas.estimate$0.005Gas oracle with tip percentiles
hyperd.dex.quote$0.02Multi-aggregator best DEX route
hyperd.wallet.persona$0.10Behavioral wallet classification
hyperd.contract.audit$0.10Pre-trade contract security composite
hyperd.governance.summarize$0.10LLM-summarized DAO proposals
hyperd.sentiment.token$0.05Token sentiment from Farcaster
hyperd.liquidation.risk$0.10Cross-protocol liquidation risk (Aave V3 / Compound v3 / Spark / Morpho)
hyperd.wallet.anomaly$0.10Wallet anomaly detection vs 180-day baseline
hyperd.wallet.pnl$0.05Realized + unrealized P&L (FIFO/LIFO/HCFO)
hyperd.budget.guardian$0.01Agent USDC spend visibility + cap check
hyperd.bundle$0.20 fixedMulti-call: 1-10 paid GETs in one settlement
hyperd.watch.create$3.00 prepaySubscribe to a continuous liquidation watch (HMAC webhooks)
hyperd.watch.list(free for owner)List your active watches
hyperd.watch.cancel(free for owner)Cancel one of your watches

Synthesis tier — composed verdicts (Haiku 4.5, v1.1.0)

Each synthesis tool fans out multiple sub-calls internally and returns a single verdict + inputs + methodology.version + coverage envelope, authored by Claude Haiku 4.5.

ToolPriceWhat it does
hyperd.risk.full_audit$0.35Composed wallet risk: balance + sanctions + persona + contract + mixer. Bands: safe / moderate / elevated / critical.
hyperd.token.archetype$0.30Token classification: stablecoin / blue_chip / mid_cap / memecoin / wrapped / governance / unverified.
hyperd.wallet.thesis$0.50Plain-language behavioral thesis: trader / hodler / yield_farmer / mev_bot / compromised / inactive.
hyperd.wallet.threat_brief$1.502-3 sentence security verdict: clean / watch / elevated / critical.
hyperd.gov.translate$1.00Snapshot/Tally proposal in plain language (1y cache).
hyperd.yield.allocation$1.00Portfolio split across risk tiers for a given amount (6h cache).

Full HTTP API docs: https://api.hyperd.ai/api/discover

Security

  • Use a hot wallet, not your primary. The MCP server has the private key in process memory while it runs.
  • Cap your spend by transferring only what you want to use. There's no built-in spending limit; the wallet's balance IS the limit.
  • Don't commit your private key. The Claude Desktop config file is local; don't share it.

Configuration via mnemonic instead of private key

If you have a 12 or 24-word BIP-39 mnemonic instead of a raw key:

"env": {
  "HYPERD_WALLET_MNEMONIC": "word1 word2 ... word12"
}

Derives at the standard Ethereum path m/44'/60'/0'/0/0.

Optional env vars

  • HYPERD_API_BASE — default https://api.hyperd.ai. Override for testnet or self-hosted.
  • HYPERD_BASE_RPC — default public Base RPC. Override for higher rate limits.

Remote MCP-over-HTTPS (no install)

If you don't want to run the stdio server locally, hyperD's full tool catalog is also available as a remote MCP server:

POST https://api.hyperd.ai/mcp
Content-Type: application/json

{"jsonrpc":"2.0","id":1,"method":"tools/list"}

Same 24 paid tools, same free-tier quota (5 calls/IP/day, 10 lifetime), same X-Payment auth model for paid calls after quota. No npm install, no per-IDE config — just a URL.

Useful when:

  • You're deploying an agent to a serverless platform (Vercel, Lambda) and don't want to bundle the stdio process
  • You're using an MCP-aware service that expects a remote URL (Smithery enterprise, hosted gateways)
  • You want to test the API surface from the command line with curl before committing to a local install

Server card: https://api.hyperd.ai/.well-known/mcp.json.

License

MIT — same as the parent repo.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

HYPERD_WALLET_PRIVATE_KEY*secret

0x-prefixed 32-byte EVM private key for the wallet that pays for hyperD calls in USDC on Base. The wallet must hold USDC (~$5 is plenty for hundreds of decision cycles). The MCP server signs EIP-3009 transfer authorizations per call.

Categories
Finance & Commerce
Registryactive
Packagehyperd-mcp
TransportSTDIO
AuthRequired
UpdatedJun 9, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.