| name | messari-token-research |
| description | Full token research workflow using Messari x402 API. Fetches asset fundamentals, price history, sentiment signals, and news, then synthesizes a research brief via Messari AI. Total cost ~$1.00–$1.50 USDC per run. |
| tags | ["messari","research","tokens","signals","x402","workflow"] |
Messari Token Research Workflow
Goal
Given a token slug (e.g. bitcoin, ethereum, solana), run a 5-step research workflow that pulls fundamentals, price action, signals, news, and finishes with an AI-synthesized brief.
Total cost per run: ~$1.00–$1.50 USDC on Base
Trigger phrases
- "Research [token]"
- "Give me a brief on [token]"
- "What's the outlook on [token]?"
- "Deep dive on [token]"
Step 0 — Preflight: check balance
mp token balance list --wallet main --chain base --json
Ensure at least $2.00 USDC on Base before starting. If low:
mp token bridge \
--wallet main \
--from-chain ethereum \
--to-chain base \
--token usdc \
--amount 10
Step 1 — Asset fundamentals (~$0.05)
Replace {slug} with the token identifier (e.g. bitcoin, solana):
mp x402 request \
--method GET \
--url "https://api.messari.io/v2/assets/details?assets={slug}" \
--wallet main \
--chain base