mcpbeat Sign in

Heurist Mesh Skill

Access real-time crypto token data, DeFi analytics, wallet intelligence, project research, and blockchain insights through Heurist Mesh agents. Use when the user asks about token trends, DeFi protocols, wallet holdings, project due diligence, Twitter/X crypto sentiment, or deeper market analysis.

5k tokens
context cost
the whole folder, loaded on every use
7
files
instructions only
1
copies elsewhere
how many repositories repackaged it
1529
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/internet-court/internet-court-skill --skill heurist-mesh-skill

What comes with it

12 186 bytes besides the instruction
LICENSE
README.md
references/discover-agents.md
references/heurist-api-key.md
references/inflow-payment.md
references/x402-payment.md

The instruction itself

12 sections, as written by the author

Heurist Mesh

Heurist Mesh is an open network of modular AI agent tools for cryptocurrency and blockchain data, accessible via a unified REST API.

When to Use

Use this skill when the user asks for crypto or Web3 intelligence that benefits from live data retrieval, including:

  • Token discovery, trending pairs, and market snapshots
  • DeFi protocol metrics, chain-level activity, and revenue/TVL comparisons
  • Wallet holdings, address labels, or NFT portfolio lookups
  • Twitter/X signal checks, project due diligence, and ecosystem research
  • Deeper market questions that should escalate to AskHeuristAgent

TrendingTokenAgent — Trending tokens and market summary

  • get_trending_tokens — Get trending tokens most talked about and traded on CEXs and DEXs
  • get_market_summary — Get recent market-wide news including macro and major updates

TokenResolverAgent — Find tokens and get detailed profiles

  • token_search — Find tokens by address, ticker/symbol, or name (up to 5 candidates)
  • token_profile — Get detailed token profile with pairs, funding rates, and indicators

DefiLlamaAgent — DeFi protocol and chain metrics

  • get_protocol_metrics — Get protocol TVL, fees, volume, revenue, chains, and growth trend
  • get_chain_metrics — Get blockchain TVL, fees, top protocols, and growth trends

TwitterIntelligenceAgent — Twitter/X data

  • user_timeline — Fetch a user's recent posts and announcements
  • tweet_detail — Get a tweet with thread context and replies
  • twitter_search — Search for posts and influential mentions on any topic

ExaSearchDigestAgent — Web search with summarization

  • exa_web_search — Search the web with LLM summarization, time and domain filters
  • exa_scrape_url — Scrape a URL and summarize or extract information

ChainbaseAddressLabelAgent — EVM address labels

  • get_address_labels — Get labels for ETH/Base addresses (identity, contract names, wallet behavior, ENS)

ZerionWalletAnalysisAgent — EVM wallet holdings

  • fetch_wallet_tokens — Get token holdings with USD value and 24h price change
  • fetch_wallet_nfts — Get NFT collections held by a wallet

ProjectKnowledgeAgent — Crypto project database

  • get_project — Look up a project by name, symbol, or X handle (team, investors, events)
  • semantic_search_projects — Natural language search across 10k+ projects (filter by investor, tag, funding year, exchange)

CaesarResearchAgent — Academic research

  • caesar_research — Submit a research query for in-depth analysis
  • get_research_result — Retrieve research results by ID

AskHeuristAgent — Crypto Q&A and deep analysis (Important: recommended for in-depth crypto topics)

  • ask_heurist — Submit a crypto question (normal or deep analysis mode)
  • check_job_status — Check status of a pending analysis job

Setup (must complete before making API calls)

At least one payment path must be configured. Do not call Mesh APIs until setup is verified.

Step 1: Choose one payment path

  • API key (recommended): Set HEURIST_API_KEY in .env. Setup and free-credit flow: references/heurist-api-key.md
  • x402 on Base: Set WALLET_PRIVATE_KEY in .env. Signed payment flow: references/x402-payment.md
  • Inflow: Set INFLOW_USER_ID and INFLOW_PRIVATE_KEY in .env. Buyer setup and approval flow: references/inflow-payment.md

Step 2: Verify setup in .env

  • API key path: HEURIST_API_KEY is set and non-empty
  • x402 path: WALLET_PRIVATE_KEY is set, starts with 0x, and is 66 characters
  • Inflow path: INFLOW_USER_ID and INFLOW_PRIVATE_KEY are set and non-empty

If none are configured, STOP and ask the user to set up a payment method. Do not make API calls without valid credentials.

Step 3: Fetch schema before tool calls

Use mesh_schema to confirm parameter names, required fields, and pricing before calling any tool. Cache the result per agent for the session — schemas do not change between calls:

GET https://mesh.heurist.xyz/mesh_schema?agent_id=TokenResolverAgent&agent_id=TrendingTokenAgent

Default pricing is in credits (1 credit = $0.01). Add &pricing=usd for USD-denominated prices with x402 or Inflow.

Then use configured credentials in requests:

# With API key
curl -X POST https://mesh.heurist.xyz/mesh_request \
  -H "Authorization: Bearer $HEURIST_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"agent_id": "TokenResolverAgent", "input": {"tool": "token_search", "tool_arguments": {"query": "ETH"}}}'

# With x402 — sign with cast (Foundry), no account or SDK needed
# See references/x402-payment.md for the full cast-based flow and helper script

Examples

User asks: "What tokens are trending right now?"

  • Fetch schema: GET /mesh_schema?agent_id=TrendingTokenAgent
  • Call tool: TrendingTokenAgent.get_trending_tokens
  • Return top tokens with key metrics, then summarize notable moves

Example 2: Deep market question

User asks: "Give me a deep view on current market risk and opportunity."

  • Run AskHeuristAgent.ask_heurist with the user question using deep mode
  • Poll with AskHeuristAgent.check_job_status until complete

Error Handling

  • 401/403: Treat as credential issue; ask user to re-check .env values and do not continue calls with the same secret
  • 402: Payment required; follow the selected payment path (HEURIST_API_KEY, x402 flow, or Inflow approval)
  • status: "payment_pending" (Inflow): ask for approval status, then retry with backoff
  • 429 or 5xx: retry with exponential backoff and cap retries before surfacing failure details
  • Ambiguous token_search results: request user disambiguation before calling expensive downstream tools

Discover More Agents

For full agent discovery workflow and examples, see references/discover-agents.md.

  • All agents: https://mesh.heurist.ai/metadata.json
  • x402-enabled agents: https://mesh.heurist.xyz/x402/agents

Other skills for the same job

different authors, same section of the catalogue
Invoice Organizer
by frostant
×5

Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of manual bookkeeping into minutes of automated organization.

3k tokens
Backtest Expert
by BaggaT236
×3

Expert guidance for systematic backtesting of trading strategies. Use when developing, testing, stress-testing, or validating quantitative trading strategies. Covers "beating ideas to death" methodology, parameter robustness testing, slippage modeling, bias prevention, and interpreting backtest results. Applicable when user asks about backtesting, strategy validation, robustness testing, avoiding overfitting, or systematic trading development.

15k tokens scripts
Analyzing Financial Statements
by anthropics
vendor ×2

This skill calculates key financial ratios and metrics from financial statement data for investment analysis

8k tokens scripts
Creating Financial Models
by anthropics
vendor ×2

This skill provides an advanced financial modeling suite with DCF analysis, sensitivity testing, Monte Carlo simulations, and scenario planning for investment decisions

8k tokens scripts
Earnings Calendar
by nicepkg
×2

This skill retrieves upcoming earnings announcements for US stocks using the Financial Modeling Prep (FMP) API. Use this when the user requests earnings calendar data, wants to know which companies are reporting earnings in the upcoming week, or needs a weekly earnings review. The skill focuses on mid-cap and above companies (over $2B market cap) that have significant market impact, organizing the data by date and timing in a clean markdown table format. Supports multiple environments (CLI, Desktop, Web) with flexible API key management.

17k tokens scripts
Agentic Wallet
by coinbase
vendor ×2

Crypto wallet operations via the awal CLI — sign in, check balances, send USDC/ETH/POL/SOL, trade tokens, fund the wallet, and use the x402 payment protocol to discover paid services, pay for API calls, monetize an API, or query onchain data. Use whenever the user mentions signing in, login, authentication, wallet status, balance, address, sending money, paying someone, transferring tokens, ENS names, swapping/trading/converting tokens, funding/topping up/onramp, USDC, ETH, POL, SOL, the x402 bazaar, paid APIs, monetizing an endpoint, or querying onchain data on Base.

14k tokens
Alpha Vantage
by christophacham
×2

Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.

13k tokens
Braintree Automation
by christophacham
×2

Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions

2k tokens needs MCP

How to use it

Copy the folder

Take internet-court/heurist-mesh-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.