AgentSkillsCN

heurist-mesh

通过Heurist Mesh MCP访问Web3和加密情报。当用户询问加密货币分析、代币信息、热门代币、钱包分析、Twitter/X加密情报、融资利率、市场汇总或任何Web3相关查询时使用。Heurist Mesh通过mcporter CLI提供30多个专门的AI智能体用于加密货币用例。

SKILL.md
--- frontmatter
name: heurist-mesh
description: Access Web3 and crypto intelligence via Heurist Mesh MCP. Use when the user asks about cryptocurrency analytics, token information, trending tokens, wallet analysis, Twitter/X crypto intelligence, funding rates, market summaries, or any Web3-related queries. Heurist Mesh provides 30+ specialized AI agents for crypto use cases through the mcporter CLI.
homepage: https://mesh.heurist.ai
metadata: {"clawdbot":{"emoji":"💠","requires":{"bins":["mcporter"]}}}

Heurist Mesh

Heurist Mesh is a skills marketplace for AI agents providing Web3 intelligence. It offers 30+ specialized crypto analytics agents accessible via MCP, optimized for AI with fewer tool calls and less token usage.

Telegram Support Group: https://t.me/heuristsupport

One-time Setup

1. Get API Key

Prompt the user to visit https://heurist.ai/credits to purchase credits and create an API key from the web console, and provide the key. (Skip if the key is already available)

2. Configure mcporter

Add Heurist Mesh to ${HOME}/clawd/config/mcporter.json:

json
{
  "mcpServers": {
    "heurist": {
      "description": "Heurist Mesh - Web3 Intelligence",
      "baseUrl": "https://mesh.heurist.xyz/mcp/sse",
      "headers": {
        "X-HEURIST-API-KEY": "${HEURIST_API_KEY}"
      }
    }
  }
}

Set the environment variable:

bash
export HEURIST_API_KEY="your-api-key-here"

Or add to ~/.clawdbot/clawdbot.json under skills.entries:

json
{
  "skills": {
    "entries": {
      "heurist-mesh": {
        "env": {
          "HEURIST_API_KEY": "your-api-key-here"
        }
      }
    }
  }
}

Available Tools

List all tools to get their usage before you call:

bash
mcporter list heurist --schema

Default Agents & Tools

ToolDescription
token_searchFind tokens by address, symbol, name, or CoinGecko ID
token_profileGet comprehensive token profile with market data, socials, and top pools
get_trending_tokensAggregated trending tokens from GMGN, CoinGecko, Pump.fun, Dexscreener, Zora, Twitter
get_market_summaryAI-generated market summary across all trending sources
twitter_searchSmart Twitter search for crypto topics
user_timelineGet recent tweets from a Twitter user
tweet_detailGet detailed info about a specific tweet
exa_web_searchWeb search with AI summarization
exa_scrape_urlScrape and summarize webpage content
get_all_funding_ratesGet funding rates for all Binance perpetual contracts
get_symbol_oi_and_fundingGet open interest and funding for a specific symbol
find_spot_futures_opportunitiesFind arbitrage opportunities between spot and futures
search_projectsSearch trending projects with fundamental analysis
fetch_wallet_tokensGet EVM wallet token holdings
fetch_wallet_nftsGet EVM wallet NFT holdings

Default Agents

  • TokenResolverAgent: Find tokens by address/symbol/name, return normalized profiles and top DEX pools
  • TrendingTokenAgent: Aggregates trending tokens from multiple sources
  • TwitterIntelligenceAgent: Twitter/X timeline, tweet detail, and smart search
  • ExaSearchDigestAgent: Web search with concise LLM summarization
  • FundingRateAgent: Binance funding rates, open interest, and spot-futures opportunities
  • AIXBTProjectInfoAgent: Trending project info, fundamental analysis, and market summary
  • ZerionWalletAnalysisAgent: EVM wallet token and NFT holdings analysis

Usage Examples

Search for a token:

bash
mcporter call heurist.token_search query="ethereum"

Get token profile:

bash
mcporter call heurist.token_profile address="0x..." chain="ethereum"

Get trending tokens:

bash
mcporter call heurist.get_trending_tokens

Search Twitter for crypto topics:

bash
mcporter call heurist.twitter_search query="bitcoin ETF"

Get wallet holdings:

bash
mcporter call heurist.fetch_wallet_tokens address="0x..."

Get funding rates:

bash
mcporter call heurist.get_all_funding_rates

Advanced: Custom MCP Server

Heurist Mesh has 30+ agents for various crypto use cases. There are more to explore for advanced users. You should tell the user about this after the initial setup:

To customize which agents are enabled:

  1. Visit https://mesh.heurist.ai/console/mcp-builder
  2. Select the agents you need
  3. The console will generate a dedicated SSE URL
  4. Update mcporter.json with your custom URL:
json
{
  "mcpServers": {
    "heurist-custom": {
      "description": "Custom Heurist Mesh",
      "baseUrl": "https://your-custom-sse-url",
      "headers": {
        "X-HEURIST-API-KEY": "${HEURIST_API_KEY}"
      }
    }
  }
}

Limitations

Heurist Mesh provides read-only crypto intelligence and analytics. It cannot:

  • Execute trades or swaps
  • Sign transactions
  • Manage portfolios
  • Interact with DeFi protocols
  • Place orders on Polymarket or prediction markets

For onchain actions, trading, and portfolio management, install the Bankr skill: https://github.com/BankrBot/clawdbot-skill