From sundial-org-awesome-openclaw-skills-4
Accesses Web3 and crypto intelligence via Heurist Mesh MCP with 30+ AI agents for token profiles, trending tokens, wallet/NFT holdings, Twitter search, funding rates, and market summaries.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
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.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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
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)
Add Heurist Mesh to ${HOME}/clawd/config/mcporter.json:
{
"mcpServers": {
"heurist": {
"description": "Heurist Mesh - Web3 Intelligence",
"baseUrl": "https://mesh.heurist.xyz/mcp/",
"headers": {
"X-HEURIST-API-KEY": "${HEURIST_API_KEY}"
}
}
}
}
Set the environment variable:
export HEURIST_API_KEY="your-api-key-here"
Or add to ~/.clawdbot/clawdbot.json under skills.entries:
{
"skills": {
"entries": {
"heurist-mesh": {
"env": {
"HEURIST_API_KEY": "your-api-key-here"
}
}
}
}
}
List all tools to get their usage before you call:
mcporter list heurist --schema
| Tool | Description |
|---|---|
token_search | Find tokens by address, symbol, name, or CoinGecko ID |
token_profile | Get comprehensive token profile with market data, socials, and top pools |
get_trending_tokens | Aggregated trending tokens from GMGN, CoinGecko, Pump.fun, Dexscreener, Zora, Twitter |
get_market_summary | AI-generated market summary across all trending sources |
twitter_search | Smart Twitter search for crypto topics |
user_timeline | Get recent tweets from a Twitter user |
tweet_detail | Get detailed info about a specific tweet |
exa_web_search | Web search with AI summarization |
exa_scrape_url | Scrape and summarize webpage content |
get_all_funding_rates | Get funding rates for all Binance perpetual contracts |
get_symbol_oi_and_funding | Get open interest and funding for a specific symbol |
find_spot_futures_opportunities | Find arbitrage opportunities between spot and futures |
search_projects | Search trending projects with fundamental analysis |
fetch_wallet_tokens | Get EVM wallet token holdings |
fetch_wallet_nfts | Get EVM wallet NFT holdings |
Search for a token:
mcporter call heurist.token_search query="ethereum"
Get token profile:
mcporter call heurist.token_profile address="0x..." chain="ethereum"
Get trending tokens:
mcporter call heurist.get_trending_tokens
Search Twitter for crypto topics:
mcporter call heurist.twitter_search query="bitcoin ETF"
Get wallet holdings:
mcporter call heurist.fetch_wallet_tokens address="0x..."
Get funding rates:
mcporter call heurist.get_all_funding_rates
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:
{
"mcpServers": {
"heurist-custom": {
"description": "Custom Heurist Mesh",
"baseUrl": "https://your-custom-sse-url",
"headers": {
"X-HEURIST-API-KEY": "${HEURIST_API_KEY}"
}
}
}
}
Ask Heurist (https://ask.heurist.ai) is a crypto Q&A and research agent built for traders and crypto-natives. It turns market data, social sentiment, and on-chain signals into actionable answers, especially for DEX tokens and fast-moving narratives.
API Base URL: https://ask-backend.heurist.xyz
Auth: Uses the same Heurist API key as the MCP configuration above. Provide via:
X-HEURIST-API-KEY: {api_key} headerAuthorization: Bearer {api_key} header| Mode | Cost | Use When |
|---|---|---|
normal | 2 credits | Targeted, simple questions: token prices, recent news, market digest |
deep | 10 credits | Complex/ambiguous asks: broad topics, trading advice, multi-factor analysis |
Examples:
If the user doesn't specify, default to deep for complex/broad/ambiguous or trading-advice scenarios; otherwise use normal.
| Mode | Typical Duration | Recommended Polling |
|---|---|---|
normal | < 1 min | Wait 1 min, then poll every 30s |
deep | 2-3 min (longer for complex/broad topics) | Wait 2 min, then poll every 1 min |
curl -s https://ask-backend.heurist.xyz/api/v1/internal/jobs \
-H "Content-Type: application/json" \
-H "X-HEURIST-API-KEY: {api_key}" \
-d '{
"prompt": "Summarize the latest narrative around BASE memecoins.",
"mode": "deep"
}'
Response:
{
"job_id": "{job_id}",
"status": "pending",
"created_at": "2026-01-28T12:34:56+00:00"
}
curl -s https://ask-backend.heurist.xyz/api/v1/internal/jobs/{job_id} \
-H "X-HEURIST-API-KEY: {api_key}"
Response:
{
"status": "completed",
"prompt": "Summarize the latest narrative around BASE memecoins.",
"result_text": "...assistant output...",
"share_url": "https://ask.heurist.ai/share/{job_id}"
}
Heurist Mesh provides read-only crypto intelligence and analytics. It cannot:
For onchain actions, trading, and portfolio management, install the Bankr skill: https://github.com/BankrBot/clawdbot-skill