Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

MistTrackMCP

MCP.Pizza Chef: slowmist

MistTrackMCP is a server that connects Claude AI to the MistTrack blockchain analysis API, enabling direct access to blockchain data for address analysis, risk assessment, transaction tracking, and fund flow visualization. It supports multi-layer recursive transaction analysis, providing deep insights into blockchain asset movements and risks. This server facilitates seamless integration of blockchain intelligence into AI workflows.

Use This MCP server To

Analyze blockchain addresses for risk and activity patterns Track cryptocurrency transactions across multiple layers Visualize fund flows within blockchain networks Integrate blockchain data into AI-driven asset tracking Perform recursive transaction analysis for fraud detection Monitor blockchain asset movements in real time Enhance AI models with direct blockchain data access

README

MistTrack MCP Server

This project provides a MCP server for Claude AI to connect to the MistTrack blockchain analysis API. Through this server, Claude can directly access and analyze blockchain data, helping users with blockchain asset tracking, risk assessment, and transaction analysis.

Installation

Global Installation

npm install -g misttrack

Configuration in Claude

To use this MCP server in the Claude desktop application, add the following to Claude's configuration file:

{
  "mcpServers": {
    "misttrack": {
      "command": "npx",
      "args": [
        "-y",
        "misttrack@latest",
        "--key",
        "YOUR_MISTTRACK_API_KEY"
      ]
    }
  }
}

Command Line Options

Option Description Default Value
-k, --key <key> MistTrack API Key -
-u, --base-url <url> MistTrack API Base URL https://openapi.misttrack.io
-r, --rate-limit <limit> API rate limit (requests per second) 1.0
-m, --max-retries <retries> Maximum retry count 3
-d, --retry-delay <delay> Retry delay (seconds) 1.0
-b, --retry-backoff <backoff> Retry backoff multiplier 2.0

Supported MistTrack Tools

This MCP server provides the following MistTrack tools:

  • mcp_misttrack_detect_address_chain - Detect the blockchain and possible tokens supported by the address
  • mcp_misttrack_get_address_labels - Get label list for specified address
  • mcp_misttrack_get_address_overview - Get balance and statistics for specified address
  • mcp_misttrack_get_address_action - Get transaction operation analysis results for specified address
  • mcp_misttrack_get_address_trace - Get profile for specified address, including platform interaction list and related threat intelligence data
  • mcp_misttrack_get_address_counterparty - Get transaction counterparty analysis results for specified address
  • mcp_misttrack_check_malicious_funds - Check if specified address has malicious funds (like blacklisted USDT)
  • mcp_misttrack_get_risk_score - Get risk score for specified address or transaction hash
  • mcp_misttrack_get_dashboard_url - Generate MistTrack dashboard URL based on coin and address
  • mcp_misttrack_get_chain_explorer_url - Generate blockchain explorer URL based on coin and address
  • mcp_misttrack_get_url_info - Get comprehensive URL information for specified address, including dashboard URL and blockchain explorer URL
  • analyze_transactions_recursive - Recursively analyze transaction relationships and build transaction graph for multiple-layer funds tracing

Advanced Tools

Transaction Recursive Analysis

The analyze_transactions_recursive tool provides advanced multi-layer transaction analysis capabilities:

{
  coin: string;              // Cryptocurrency type (ETH, BTC, etc.)
  address: string;           // Address to analyze
  max_depth: number;         // Maximum analysis depth (1-3, default: 1)
  start_timestamp?: number;  // Optional start timestamp
  end_timestamp?: number;    // Optional end timestamp
  transaction_type?: 'in' | 'out' | 'all';  // Optional transaction type filter
}

This tool recursively analyzes blockchain transactions to:

  • Build a comprehensive transaction graph showing fund flows
  • Identify important addresses (exchanges, mixers, suspicious services, etc.)
  • Create visualizable fund flow paths
  • Generate detailed statistics on transaction relationships

Example usage in Claude:

I need to analyze potential fund flows for this Bitcoin address: 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa
Can you analyze it to a depth of 2 layers?

Claude will automatically use the tool to provide detailed multi-layer analysis of the address.

Usage Examples

Here are some examples of using MistTrack MCP tools:

Address Label Lookup

Use the mcp_misttrack_get_address_labels tool to query the label information of blockchain addresses, helping to identify the purpose or risk of addresses.

Please check the label information for this Ethereum address: [ETH_ADDRESS]

Label Check Example

Address Overview Analysis

Use the mcp_misttrack_get_address_overview tool to get balance and statistical information for an address.

Please analyze the overview information of this Bitcoin address: [BTC_ADDRESS]

Address Overview Example

Counterparty Analysis

Use the mcp_misttrack_get_address_counterparty tool to analyze the transaction counterparties of an address.

Please analyze the counterparties of this address: [ETH_ADDRESS]

Exchange Fund Flow Analysis

Use the mcp_misttrack_analyze_transactions_recursive tool to recursively analyze transaction relationships and track fund flows.

Please track the fund flow between this address and exchanges, with a depth of 2: [ETH_ADDRESS]

Exchange Fund Flow

Malicious Fund Detection

Use the mcp_misttrack_check_malicious_funds tool to detect whether an address contains marked malicious funds.

Please check if this address has malicious funds: [ETH_ADDRESS]

Malicious Fund Detection

Risk Scoring

Use the mcp_misttrack_get_risk_score tool to get the risk score of an address or transaction.

Please assess the risk level of this address: [ETH_ADDRESS]

MistTrackMCP FAQ

How do I install the MistTrack MCP server?
Install globally using npm with 'npm install -g misttrack'.
How do I configure MistTrack MCP server in Claude AI?
Add the MistTrack server configuration with your API key to Claude's config file as shown in the documentation.
What API key is required to use MistTrack MCP server?
You need a valid MistTrack API key to authenticate requests to the MistTrack blockchain API.
Can MistTrack MCP server handle rate limiting?
Yes, it supports configurable API rate limiting to manage request throughput.
What blockchain data can MistTrack MCP server access?
It provides address analysis, risk assessment, transaction tracking, and fund flow visualization.
Does MistTrack MCP support multi-layer transaction analysis?
Yes, it supports recursive multi-layer transaction analysis for deep blockchain insights.
Is MistTrack MCP server compatible with other LLMs besides Claude?
While designed for Claude, the MCP protocol allows integration with other LLMs like OpenAI GPT and Anthropic Claude with appropriate configuration.
How do I update the MistTrack MCP server?
Update via npm using 'npm install -g misttrack@latest' to get the newest features and fixes.