Skip to main content
Automations are pre-built analysis patterns that help Claude answer complex blockchain questions systematically.

How Automations Work

Instead of starting from scratch, Claude can find and use workflows designed for common analysis tasks:
  1. find_workflow - Search for relevant workflows
  2. get_workflow - Get workflow details and methodology
  3. plan_workflow - Generate customized steps for your question

Example Usage

You: How do I analyze token holder distribution? Claude: Let me find a workflow for that… [uses find_workflow] Found “Token Holder Analysis” workflow. This will:
  1. Query current token balances
  2. Calculate holder concentration (Gini coefficient)
  3. Identify whale wallets
  4. Show distribution breakdown
Should I run this for a specific token?

Available Tools

find_workflow

Search for workflows using semantic search.
Tool: find_workflow
Parameters:
  - question: What you want to analyze
Example searches:
  • “Analyze wallet profitability”
  • “Track token holder changes”
  • “Compare DEX market share”
  • “Monitor bridge activity”

get_workflow

Get detailed information about a specific workflow.
Tool: get_workflow
Parameters:
  - id: Workflow ID
Returns:
  • Workflow name and description
  • Required inputs
  • Step-by-step methodology
  • Example outputs

plan_workflow

Generate customized execution steps for a workflow based on your specific question.
Tool: plan_workflow
Parameters:
  - workflowId: The workflow to use
  - question: Your specific question
Returns tailored steps with:
  • Customized SQL queries
  • Specific parameters filled in
  • Recommended visualizations

Common Workflow Types

Wallet Analysis

  • Wallet Profitability - Calculate P&L for a wallet
  • Wallet Activity - Transaction patterns and frequency
  • Portfolio Breakdown - Holdings by token and chain

Token Analysis

  • Holder Distribution - Concentration and whale analysis
  • Transfer Patterns - Flow analysis between wallets
  • Price Correlation - Compare with market movements

Protocol Analysis

  • TVL Tracking - Total value locked over time
  • User Growth - Unique users and retention
  • Revenue Analysis - Fee generation and distribution

Market Analysis

  • DEX Volume - Trading activity across protocols
  • Liquidity Depth - Pool analysis and slippage
  • Arbitrage Detection - Cross-DEX price differences

Tips for Using Workflows

Describe Your Goal

Instead of: “Run a workflow” Try: “I want to understand how concentrated the PEPE token holder base is”

Provide Context

“Analyze wallet 0x123… - they seem to be a DeFi power user and I want to understand their strategy”

Ask for Customization

“Run the wallet analysis workflow but focus on their NFT trading activity”

Request Explanations

“Use the token holder workflow and explain what each metric means”

Building on Workflows

Workflows are starting points. You can:
  1. Extend - Add more analysis steps
  2. Combine - Use multiple workflows together
  3. Customize - Modify queries for your needs
You: Run the wallet analysis, then also check if this wallet has interacted with any known protocols Claude: I’ll combine the wallet analysis workflow with protocol interaction detection…