Agent CapabilitiesMCP Server

MCP Server

The hosted Conyr MCP server exposes 46 tools to autonomous agents: 42 focused intelligence calls and four multi-source dossiers. Inputs are JSON Schema, successful results carry the full payload as structured content, and every object result includes an evidenceUrl.

Connect

https://mcp.conyr.ai/mcp

Authenticate with Authorization: Bearer <YOUR_CONYR_KEY>. The server is stateless HTTP; the key’s tier gates each tool call and applies its own per-key MCP request budget.

claude mcp add --transport http conyr https://mcp.conyr.ai/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

What every call returns

An MCP result includes:

  • structuredContent: the complete JSON payload for programmatic reasoning;
  • a short text block for models that primarily consume text;
  • a resource link to the Conyr evidence page;
  • isError: true plus a structured error body when a dispatch fails.

Tier failures are machine-readable:

{
  "error": "tier_insufficient",
  "tool": "token_deep_dive",
  "requiredTier": "Layer 3",
  "yourTier": "Layer 2"
}

Complete catalog by tier

There are no Layer 1-only MCP tools today. Layer 1 market primitives are exposed through typed REST and WebSocket; MCP begins with the Free intelligence samplers, then the Layer 2 and Layer 3 reasoning surfaces.

Minimum tierFocused toolsComposite tools
Freequery_buyer_quality, query_token_bundle_summary, resolve_token_identifier
Layer 2query_wallet_performance, query_wallet_quality, query_wallet_trades, query_wallet_positions, query_wallet_xray, query_wallet_xray_lite, query_wallet_provenance, query_similar_wallets, query_leaderboard, fetch_wallet_labels_batch, query_holder_breakdown, query_token_holder_pnlwallet_overview
Layer 3search_tokens, query_token_bundles, query_token_signal, query_token_score, query_token_security_status, query_pool_security_status, query_wallet_ban_status, query_wallet_label_evidence, query_wallet_coordination, query_wallet_follows, query_token_coordination, query_coordination_evidence, query_token_crowd, query_entity_detail, query_token_funding_abuse, query_token_wash_trades, query_wallet_entanglement, query_bundle_detail, query_token_campaigns_history, query_entity_token_history, query_forming_coordinated_pushes, query_follower_cascade, query_emerging_entities, query_token_minority_buyers, query_copy_originator, query_token_entity_concentration, query_token_late_retailtoken_deep_dive, token_coordination_report, wallet_network_report

The breakdown tools

Use a composite first for broad questions. Each one fans out independent readers concurrently and returns sections, partial, errors, and evidenceUrl. A failed source becomes a null section with an error entry instead of erasing the successful evidence.

ToolTierIndependent evidence sections
wallet_overviewLayer 2X-ray, coordination block, provenance, 30-day performance, behaviorally similar wallets
token_deep_diveLayer 3risk signal, bundle summary, holder-label breakdown, holder PnL, buyer quality, direct security row
token_coordination_reportLayer 3campaigns, crowd state, entity concentration, early clustered buyers, late-retail flow, wash patterns
wallet_network_reportLayer 3follow edges in both directions, entity membership and roster, bundle-entanglement clusters

Agent routing rules

  • Broad token question → token_deep_dive.
  • “Who is behind this token?” → token_coordination_report.
  • Broad wallet question → wallet_overview.
  • “Who copies, funds, or clusters with this wallet?” → wallet_network_report.
  • “Is this wallet actually skilled?” → query_wallet_quality, not the conventional performance win rate.
  • “Why was this conclusion reached?” → query_coordination_evidence, query_wallet_label_evidence, query_wallet_ban_status, or query_token_security_status.
  • “What is changing now?” → use the corresponding WebSocket stream after the MCP/REST snapshot.
⚠️

Coordination, minority-buyer, and forming-push tools are detection surfaces, not trading signals. The same structure can appear in manipulation and organic accumulation; preserve the evidence and do not invent intent.