AGENTS · SKILL

Give your agent HYRE skills

Plug HYRE's DeFi intelligence into Claude, Cursor, or any AI agent. Live on-chain data with AI analysis — token launches, wallet intel, LP analytics, yields. No signup, no API key: your agent pays per call in USDC via x402.

13 TOOLS · PAY PER CALL · NO API KEY · SOLANA USDC VIA x402

RECOMMENDED

MCP SERVER

One config block in Claude Desktop, Cursor, or any MCP client. 13 tools appear automatically — npx, no clone, no build.

SET UP MCP ↓
ANY LANGUAGE

HTTP + x402

Plain HTTP from any runtime. Catch the 402, sign the USDC payment, retry. Full OpenAPI spec available.

SEE THE FLOW ↓
NO SETUP

TRY IT IN CHAT

The same tools run inside Agent Chat in your browser. Ask in plain English, pay per call from a deposit wallet.

OPEN AGENT CHAT →

MCP — one block, 13 tools

Add this to claude_desktop_config.json (Claude Desktop) or ~/.cursor/mcp.json (Cursor) and restart — the HYRE tools appear automatically.

claude_desktop_config.json / mcp.json
{
  "mcpServers": {
    "hyre": {
      "command": "npx",
      "args": ["-y", "hyre-mcp"],
      "env": {
        "SVM_PRIVATE_KEY": "your-base58-solana-private-key"
      }
    }
  }
}
OR RUN DIRECTLY
SVM_PRIVATE_KEY=<base58-key> npx -y hyre-mcp

PREVIEW MODE — NO WALLET

Omit SVM_PRIVATE_KEY and the tools still load — they return the 402 payment requirements instead of data. Explore the catalog before funding a wallet.

SECURITY

Your key stays on your machine and only signs x402 micropayments — it is never sent to the HYRE API. Fund a dedicated agent wallet with a small USDC balance, not your main wallet.

The 13 tools

TOOLWHAT IT DOESPRICE
hyre-new-tokensPumpFun token launches with AI snipe signal$0.008
hyre-token-verdictFull AI verdict — holders, snipers, curve, risk$0.015
hyre-graduatingTokens near bonding-curve graduation$0.003
hyre-bonding-curveBonding-curve progress for a token$0.001
hyre-token-snipersSniper detection — earliest buyers$0.004
hyre-wallet-pnlWallet PnL + portfolio value$0.005
hyre-wallet-intel30-day wallet intelligence profile$0.012
hyre-whalesWhale holders + % of supply$0.003
hyre-poolsMeteora DLMM pool list (APR, TVL, volume)$0.001
hyre-pool-recommendAI pool recommendation for a token pair$0.008
hyre-tvlTotal Value Locked across chains$0.001
hyre-yieldsTop yield pools multi-chain by APY$0.002
hyre-askNatural-language DeFi question (multi-source)$0.025

Want the full live catalog, runnable in the browser? BROWSE RESOURCES →

HTTP + x402 — any language

Every tool is a plain HTTP endpoint on mpp.hyreagent.fun. The 402 response carries the payment requirements; any x402 client library can sign and retry.

TERMINAL
# 1 — call any endpoint; it answers 402 with payment requirements
curl https://mpp.hyreagent.fun/defi/yields

# 2 — sign the USDC payment with any x402 client,
#     then retry with the payment header
curl https://mpp.hyreagent.fun/defi/yields \
  -H "payment-signature: <signed-payment>"

Full schema: OPENAPI SPEC ↗

How payment works

  1. 01

    Your agent calls a HYRE tool — e.g. “get me the top yield pools”.

  2. 02

    The HYRE API answers 402 Payment Required with the price in USDC.

  3. 03

    The x402 SDK signs the micropayment from the agent's wallet automatically.

  4. 04

    The request retries with the payment proof — gas is sponsored.

  5. 05

    Data + AI insight come back. No account, no API key, no invoice.

hyre-mcp ON NPM ↗OPENAPI SPEC ↗TRY IN AGENT CHAT →