npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

misttrack

v1.0.7

Published

MistTrack MCP Server - 为Claude提供MistTrack区块链分析功能

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.

License

ISC