From alchemy-skills
Scans recent crypto funding rounds, M&A deals, VC funds via Messari API x402 requests, synthesizes VC landscape brief with Messari AI. ~$0.75–$1.25 USDC/run on Base.
npx claudepluginhub moonpay/skills --plugin alchemy-skillsThis skill uses the workspace's default tool permissions.
Map the current VC landscape in crypto — who's raising, who's investing, and what M&A deals are happening. Useful for identifying early-stage narratives, understanding capital flows, and spotting tokens with institutional backing.
Access Messari's crypto API for assets, markets, signals, news, fundraising, events, on-chain data, and AI chat via x402 pay-per-request with USDC on Base. No API key needed.
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.
Generates single-slide PowerPoint summarizing recent funding rounds and capital markets activity across watched sectors/companies using Capital IQ data with links and disclaimer.
Share bugs, ideas, or general feedback.
Map the current VC landscape in crypto — who's raising, who's investing, and what M&A deals are happening. Useful for identifying early-stage narratives, understanding capital flows, and spotting tokens with institutional backing.
Total cost per run: ~$0.75–$1.25 USDC on Base
mp token balance list --wallet main --chain base --json
Ensure at least $1.50 USDC on Base.
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/rounds?limit=20" \
--wallet main \
--chain base
Extract: company/project name, amount raised, lead investors, date, sector/category, stage (Seed, Series A, etc.).
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/mergers-and-acquisitions?limit=20" \
--wallet main \
--chain base
Extract: acquirer, target, deal value, date, strategic rationale.
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/funds?limit=30" \
--wallet main \
--chain base
Extract: fund names, AUM, focus areas, recent activity.
For specific investors identified in Steps 1–2:
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/rounds/investors?limit=20" \
--wallet main \
--chain base
Extract: most active investors, portfolio composition, deal frequency.
mp x402 request \
--method POST \
--url "https://api.messari.io/ai/v2/chat/completions" \
--body '{
"model": "messari",
"messages": [
{
"role": "system",
"content": "You are a crypto VC analyst. Given recent funding rounds, M&A activity, and fund data, produce a funding intelligence brief with: 1) Most funded sectors/narratives, 2) Most active investors, 3) M&A themes and what they signal, 4) Early-stage projects worth watching, 5) What this capital flow means for token markets."
},
{
"role": "user",
"content": "Recent rounds: {step1_output}. M&A deals: {step2_output}. Active funds: {step3_output}. Investors: {step4_output}"
}
]
}' \
--wallet main \
--chain base
If you want to look up a specific organization or project:
# Search organizations
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/organizations?name=<org-name>" \
--wallet main \
--chain base
# Search projects
mp x402 request \
--method GET \
--url "https://api.messari.io/funding/v1/projects?name=<project-name>" \
--wallet main \
--chain base
#!/bin/bash
# messari-funding-intel.sh
WALLET="main"
CHAIN="base"
BASE="https://api.messari.io"
OUT="$HOME/.config/moonpay/research/funding-$(date -u +%Y%m%d-%H%M%S)"
mkdir -p "$(dirname "$OUT")"
echo "=== [1/3] Recent Funding Rounds ==="
ROUNDS=$(mp x402 request --method GET \
--url "${BASE}/funding/v1/rounds?limit=20" \
--wallet "$WALLET" --chain "$CHAIN")
echo "$ROUNDS" > "${OUT}-rounds.json"
echo "=== [2/3] M&A Activity ==="
MA=$(mp x402 request --method GET \
--url "${BASE}/funding/v1/mergers-and-acquisitions?limit=20" \
--wallet "$WALLET" --chain "$CHAIN")
echo "$MA" > "${OUT}-ma.json"
echo "=== [3/3] Active VC Funds ==="
FUNDS=$(mp x402 request --method GET \
--url "${BASE}/funding/v1/funds?limit=30" \
--wallet "$WALLET" --chain "$CHAIN")
echo "$FUNDS" > "${OUT}-funds.json"
echo ""
echo "Funding intel saved to ${OUT}-*.json"
echo "Total cost: ~\$0.85 USDC"
## Funding Intelligence Brief — [Date]
**Cost:** ~$0.85 USDC | **Chain:** Base
### Recently Funded Sectors
1. **[Sector]** — $X raised across N deals
2. **[Sector]** — ...
### Notable Rounds
| Project | Amount | Stage | Lead Investor | Date |
|---------|--------|-------|---------------|------|
| [name] | $XM | Series A | [VC] | [date] |
### M&A Activity
| Acquirer | Target | Value | Signal |
|----------|--------|-------|--------|
| [co] | [co] | $XM | [what this means] |
### Most Active Investors
- [VC 1]: N deals in [sectors]
- [VC 2]: ...
### What This Means for Token Markets
[AI-synthesized insight: which narratives are getting capital, what sectors to watch]
--chain base)