On-chain security and market intelligence for trading agents on Base.
Wolfpack provides 13 intelligence services, 1 premium audit service, and 3 free resources via multiple protocols. Use this SDK to integrate pre-trade security checks, token risk analysis, narrative scoring, and more into your agent or application.
All prices in USDC on Base.
| Service | Description | Price | Latency |
|---|---|---|---|
security_check |
GoPlus honeypot detection, contract verification, ownership analysis | $0.01 | <1s |
token_market_snapshot |
DexScreener market data: price, volume, liquidity, buy/sell ratio | $0.01 | <1s |
token_risk_analysis |
360° risk audit: honeypot, liquidity, holders, smart money, social | $0.02 | 3-5s |
agent_trust_score |
Composite agent reliability rating (ACP performance, wallet health) | $0.03 | 2-3s |
narrative_momentum |
Social signal scoring: Twitter/X velocity, engagement quality, KOL ratio | $0.05 | 2-4s |
prediction_market |
Polymarket crypto prediction market odds, volume, and liquidity | $0.05 | 1-2s |
technical_analysis |
RSI, SMA, Bollinger Bands, support/resistance from GeckoTerminal OHLCV | $0.05 | 2-3s |
smart_money_signals |
Real-time smart money wallet activity on Base via Dune | $0.10 | 2-3s |
il_calculator |
Impermanent loss calculator for standard AMM and Uni V3 concentrated liquidity | $0.10 | 1-2s |
agent_credit_risk_index |
Financial credit risk scoring for ACP agents (liquidity, reliability, maturity) | $0.10 | 2-3s |
yield_scanner |
IL-aware yield opportunities on Base via DefiLlama | $0.15 | 2-3s |
mega_report |
Aggregated report: security + market + smart money + narrative + TA in one call | $0.50 | 5-8s |
graduation_readiness_check |
Live ACP graduation readiness audit with real test fires | $1.49 | 3-5s |
Premium: agent_audit_standard — LLM-driven agent stress test (10 jobs, scored report) — $15.00 / ~5min
Cached intelligence snapshots, no payment required.
| Resource | Endpoint | Description |
|---|---|---|
latest_narrative_signals |
GET /api/v1/resources/latest-narrative-signals |
Latest crypto narrative signals and trending topics |
token_safety_quick_list |
GET /api/v1/resources/token-safety-quick-list |
Recently scanned tokens with safety status |
whale_watch_summary |
GET /api/v1/resources/whale-watch-summary |
Recent smart money / whale activity on Base |
The mega_report bundles security, market data, smart money, narrative, and technical analysis into a single request — all 5 services run in parallel, one response, one call ($0.50).
# Start a mega report
curl -X POST https://api.wolfpack.roklabs.dev/api/v1/intelligence/mega-report \
-H "Content-Type: application/json" \
-d '{"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed", "chain": "base"}'
# Response includes a report_id — retrieve the full report:
curl https://api.wolfpack.roklabs.dev/api/mega-reports/abc123-report-id
mega_report input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base"
}
mega_report output:
{
"report_id": "abc123-report-id",
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"security": {
"safe": true,
"honeypot": false,
"verified_source": true,
"risk_flags": []
},
"market": {
"price_usd": 0.0123,
"volume_24h": 5200000,
"liquidity_usd": 3100000,
"price_change_24h": 12.5
},
"smart_money": {
"net_flow_24h": 150000,
"active_wallets": 12,
"trend": "accumulating"
},
"narrative": {
"momentum_score": 72,
"sentiment": "bullish",
"tweet_count": 340
},
"technical_analysis": {
"rsi_14": 58.3,
"sma_20": 0.0118,
"bollinger_position": "middle",
"support": 0.0105,
"resistance": 0.0140
},
"overall_risk_score": 35,
"risk_level": "medium"
}
// TypeScript — x402 micropayment
import { getPaymentHeader } from "@anthropic-ai/x402";
const res = await fetch("https://api.wolfpack.roklabs.dev/api/v1/intelligence/security-check", {
method: "POST",
headers: { "Content-Type": "application/json", ...await getPaymentHeader() },
body: JSON.stringify({ token_address: "0x..." }),
});
const { safe, risk_flags } = await res.json();
# curl — no SDK needed
curl -X POST https://api.wolfpack.roklabs.dev/api/v1/intelligence/security-check \
-H "Content-Type: application/json" \
-d '{"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed"}'
USDC payments on Base, processed automatically. See examples/typescript/ and examples/python/.
Base URL: https://api.wolfpack.roklabs.dev
| Endpoint | Service |
|---|---|
POST /api/v1/intelligence/mega-report |
mega_report |
POST /api/v1/intelligence/security-check |
security_check |
POST /api/v1/intelligence/token-risk |
token_risk_analysis |
POST /api/v1/intelligence/narrative-score |
narrative_momentum |
POST /api/v1/intelligence/agent-trust |
agent_trust_score |
POST /api/v1/intelligence/smart-money-signals |
smart_money_signals |
POST /api/v1/intelligence/token-market-snapshot |
token_market_snapshot |
POST /api/v1/intelligence/prediction-market |
prediction_market |
POST /api/v1/intelligence/il-calculator |
il_calculator |
POST /api/v1/intelligence/yield-scanner |
yield_scanner |
POST /api/v1/intelligence/technical-analysis |
technical_analysis |
POST /api/v1/intelligence/graduation-readiness-check |
graduation_readiness_check |
POST /api/v1/intelligence/agent-credit-risk-index |
agent_credit_risk_index |
POST /api/v1/intelligence/query |
All services (route via service_type field) |
Connect any MCP-compatible client (Claude Desktop, Cursor, etc.) to Wolfpack as a tool provider.
Drop-in config for Claude Desktop — copy mcp/claude-desktop-config.json to your Claude Desktop settings:
{
"mcpServers": {
"wolfpack-intelligence": {
"transport": "streamable-http",
"url": "https://api.wolfpack.roklabs.dev/api/v1/mcp"
}
}
}
Server Card: https://api.wolfpack.roklabs.dev/.well-known/mcp/server-card.json
13 tools available: mega_report, security_check, token_risk_analysis, narrative_momentum, agent_trust_score, smart_money_signals, token_market_snapshot, prediction_market, il_calculator, yield_scanner, technical_analysis, graduation_readiness_check, agent_credit_risk_index
JSON-RPC 2.0 protocol for agent-to-agent communication.
Endpoint: POST https://api.wolfpack.roklabs.dev/api/v1/a2a
Agent Card: https://api.wolfpack.roklabs.dev/.well-known/agent.json
For agents in the Virtuals ecosystem. Wolfpack is registered as a seller with 13 routed services (3 graduated, 10 pending registration) and 150+ successful jobs.
Graduated: token_risk_analysis, security_check, narrative_momentum
Pending registration: agent_trust_score, smart_money_signals, token_market_snapshot, mega_report, prediction_market, il_calculator, yield_scanner, technical_analysis, graduation_readiness_check, agent_credit_risk_index
Portal name mapping — Virtuals ACP portal uses different offering names for some services:
| Internal Service Name | Virtuals Portal Name |
|---|---|
security_check |
quicksecuritycheck |
narrative_momentum |
narrativemomentumscore |
token_risk_analysis |
token_risk_analysis |
| All other services | Same as internal name |
examples/typescript/ — x402 payment, MCP client, A2A taskexamples/python/ — x402 payment examplesexamples/curl/ — Raw HTTP examples for any languageschemas/ — JSON Schema for all service inputs/outputsAggregated intelligence report combining security, market data, smart money, narrative, and technical analysis in one call. Submit via POST, retrieve the full report via GET using the returned report_id.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base"
}
Output: See mega_report output example above.
Fast GoPlus-powered token safety scan. Returns honeypot status, contract verification, ownership flags, holder concentration.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base"
}
Output:
{
"safe": true,
"honeypot": false,
"verified_source": true,
"hidden_owner": false,
"holder_count": 45000,
"top10_holder_percent": 32.5,
"risk_flags": []
}
Multi-source risk scoring combining GoPlus, DexScreener, Dune Analytics, and Twitter social signals.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base",
"analysis_depth": "standard"
}
Scores the social momentum of a crypto narrative or token. Analyzes Twitter/X signals with VADER sentiment, engagement quality metrics, and influencer ratio.
Input:
{
"query": "AI agents on Base",
"keywords": ["autonomous", "agent", "Base chain"],
"contracts": ["0x..."]
}
Dune-powered smart money wallet activity tracking on Base. Identifies whale and DEX trader flows.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base"
}
Output:
{
"net_flow_24h": 150000,
"active_wallets": 12,
"trend": "accumulating",
"top_wallets": [
{ "address": "0x...", "action": "buy", "amount_usd": 45000 }
]
}
DexScreener market data snapshot — price, volume, liquidity, and buy/sell ratio.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base"
}
Output:
{
"price_usd": 0.0123,
"volume_24h": 5200000,
"liquidity_usd": 3100000,
"price_change_24h": 12.5,
"buys_24h": 8400,
"sells_24h": 6200,
"buy_sell_ratio": 1.35
}
Composite reliability rating for ACP/ERC-8004 agents. Scores on ACP performance (40%), network position (25%), operational health (25%), metadata compliance (10%).
Input:
{
"agent_address": "0x...",
"agent_id": 16907
}
Polymarket crypto prediction market data — odds, volume, liquidity, and outcome probabilities.
Input:
{
"query": "Bitcoin above 100k",
"category": "crypto"
}
Output:
{
"markets": [
{
"title": "Will Bitcoin be above $100k on June 30?",
"outcome_yes": 0.72,
"outcome_no": 0.28,
"volume_usd": 4500000,
"liquidity_usd": 890000,
"end_date": "2026-06-30T00:00:00Z"
}
],
"total_markets": 1
}
Impermanent loss calculator supporting standard constant-product AMM and Uniswap V3 concentrated liquidity positions.
Input (standard):
{
"entry_price": 3200.0,
"current_price": 3500.0,
"position_size_usd": 10000
}
Input (concentrated — Uni V3):
{
"entry_price": 3200.0,
"current_price": 3500.0,
"position_size_usd": 10000,
"pool_type": "concentrated",
"price_lower": 3000.0,
"price_upper": 4000.0
}
Output:
{
"pool_type": "concentrated",
"il": {
"il_percent": 0.95,
"il_usd": 99.06,
"lp_value_usd": 10567.81,
"hodl_value_usd": 10468.75,
"price_ratio": 1.09,
"in_range": true,
"price_lower": 3000,
"price_upper": 4000,
"amplification_factor": 9.43
},
"summary": "V3 Concentrated IL Analysis..."
}
IL-aware yield opportunities on Base sourced from DefiLlama. Factors in impermanent loss estimates so agents can compare real returns.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"min_tvl_usd": 100000,
"min_apy": 5.0
}
RSI, SMA, Bollinger Bands, support/resistance levels computed from GeckoTerminal OHLCV data.
Input:
{
"token_address": "0x4ed4E862860BeD51a9570b96d89aF5E1B0Efefed",
"chain": "base",
"timeframe": "1h",
"periods": 50
}
Live ACP graduation readiness audit ($1.49). Fires real test jobs against agent services, scores job lifecycle handling, schema correctness, and output consistency.
Input:
{
"target_agent_address": "0xbaC206A51E126DD97DC8046CB9a17fF4F4D9d7f2",
"offering_name": "token_risk_analysis"
}
Output:
{
"ready": false,
"overall_score": 72,
"blockers": [
"Output schema missing 'risk_level' field"
],
"warnings": [
"Description under 50 characters"
],
"recommendations": [
"Add example input/output to offering metadata",
"Include error handling documentation"
]
}
Financial credit risk scoring for ACP agents. Three pillars: realized liquidity (USDC balance vs job fees, 40%), execution reliability (success rate weighted by volume, 40%), wallet maturity (age + VIRTUAL holdings, 20%).
Input:
{
"agent_id": 16907
}
Output:
{
"credit_score": 78,
"credit_rating": "A",
"realized_liquidity": {
"score": 85,
"usdc_balance": 12.50,
"avg_job_fee": 0.05,
"coverage_ratio": 250.0
},
"execution_reliability": {
"score": 72,
"success_rate": 0.94,
"total_jobs": 156,
"volume_weighted_rate": 0.91
},
"wallet_maturity": {
"score": 75,
"wallet_age_days": 120,
"virtual_holdings": 5000.0
}
}
Wolfpack Intelligence is a live production system running on Base chain. Services are deterministic where possible (no LLM in security_check, smart_money_signals, token_market_snapshot) and LLM-enhanced where value requires it (narrative_momentum, agent_audit).
All data is sourced from on-chain and public APIs: GoPlus Security, DexScreener, Dune Analytics, TwitterAPI.io, CoinGecko, GeckoTerminal, DefiLlama, Polymarket.
https://api.wolfpack.roklabs.devhttps://api.wolfpack.roklabs.dev/.well-known/mcp/server-card.jsonhttps://api.wolfpack.roklabs.dev/.well-known/agent.jsonhttps://api.wolfpack.roklabs.dev/api/healthMIT