agentsclimarketplace

Bluepages

Skill bluepagesdoteth/agent-plugins/plugins/bluepages/skills/bluepages

Look up wallet <> social identity and label mappings via Bluepages.fyi. Use when asked who owns a crypto address, finding wallets for a social handle, identifying CEX/exchange wallets, or searching tweets mentioning an address.From its SKILL.md

Install
npx -y skills add bluepagesdoteth/agent-plugins --skill bluepages

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • reads credentialsReads from 2 credential sources: `BLUEPAGES_API_KEY` and 1 more.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • fetches URLsInstructs the agent to fetch 1 URL, including https://bluepages.fyi.

SKILL.md

3.4 KB, 697 tokens by cl100k_base, as published. Nobody here has run it

Bluepages

Address <> identity + label lookups across ETH, BTC, SOL, TRON, XMR, TON, Celestia, and XRP.

Lookup strategy

The optimal workflow depends on the payment method:

API key users (per-result pricing)

Data endpoints only charge when data is found — call them directly, no check step needed.

  • Single: get_data_for_address or get_data_for_identity.
  • Batch: batch_get_data (up to 50 items).
  • Lists > 50: batch_get_data_streaming for automatic batching with progress.

x402 users (flat pricing per request)

Data requests charge a flat fee regardless of results — check first to filter.

  • Single: check_address/check_identity ($0.001) → get_data_for_* ($0.05) only if found.
  • Batch: batch_check ($0.04) → batch_get_data ($2.00) on found items only.
  • Lists > 50: batch_check_streaming → batch_get_data_streaming on found items.

No data? Try search_tweets — finds tweet mentions even when no identity record exists.

Tools

ToolCostReturns
check_address1 creditWhether address has data
check_identity1 creditWhether identity has data
get_data_for_address50 (free if not found)Identities, labels, sanctions, clusters
get_data_for_identity50 (free if not found)Addresses, labels, sanctions, clusters
search_tweets50 (always charged)Tweets mentioning the address
batch_check40/batchWhich items have data
batch_get_data40/found itemFull data, up to 50 items

batch_check_streaming and batch_get_data_streaming exist for lists > 50.

Account tools (discoverable via MCP): check_credits, set_credit_alert, get_api_key, purchase_credits.

Supported inputs

Addresses: ETH, BTC (bech32 + base58), SOL, TRON, XMR, TON, Celestia, XRP — validated by the server.

Identities: twitter, farcaster, github, discord, telegram, email, linkedin, reddit, instagram, facebook, atproto, circles, ens, phone, name.

Authentication

  • BLUEPAGES_API_KEY — 20% cheaper, 2x rate limits. Get at bluepages.fyi/api-keys.
  • PRIVATE_KEY — x402 pay-per-request (USDC on Base). Can also purchase an API key via get_api_key + purchase_credits.

HTTP fallback

If MCP tools are unavailable, call https://bluepages.fyi directly with X-API-KEY header. Full docs: bluepages.fyi/docs

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.