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

frexplorer-mcp-server

v1.0.0

Published

MCP server for Frexplorer - Query wallet balances and transactions across 100+ blockchains

Readme

Frexplorer MCP Server

An MCP (Model Context Protocol) server for Frexplorer — the Enterprise Wallet Manager API at frexplorer.agenticledger.ai.

Overview

This server provides AI assistants (Claude, etc.) with tools to:

  • Query wallet balances across 42+ blockchain chains
  • Fetch historical balances at specific blocks/timestamps
  • Explore transaction history
  • Export transactions as CSV
  • Manage organization wallets (with API key)

Supported Chains

EVM Chains: Ethereum, Polygon, Arbitrum, Optimism, Base, BNB, Avalanche, Fantom, zkSync, Linea, Scroll, Blast, Mantle, and more.

Avalanche Ecosystem: 42 L1s including C-Chain, P-Chain, X-Chain, DFK, Beam, Shrapnel, etc.

Non-EVM: Bitcoin, Solana, Cosmos, Cardano, Polkadot, Stellar, Hedera, NEAR, Sui, Canton Network, and more.

Installation

# Clone or copy the mcp-server folder
cd frexplorer-mcp-server

# Install dependencies
npm install

# Build
npm run build

Configuration

Environment Variables

# Required
FREXPLORER_BASE_URL=https://backend-production-2871d.up.railway.app

# Optional (for authenticated routes)
FREXPLORER_API_KEY=your_api_key_here
FREXPLORER_ORG_ID=your_organization_uuid

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "frexplorer": {
      "command": "node",
      "args": ["/path/to/frexplorer-mcp-server/dist/index.js"],
      "env": {
        "FREXPLORER_BASE_URL": "https://backend-production-2871d.up.railway.app"
      }
    }
  }
}

For authenticated access (wallet management):

{
  "mcpServers": {
    "frexplorer": {
      "command": "node",
      "args": ["/path/to/frexplorer-mcp-server/dist/index.js"],
      "env": {
        "FREXPLORER_BASE_URL": "https://backend-production-2871d.up.railway.app",
        "FREXPLORER_API_KEY": "your_api_key",
        "FREXPLORER_ORG_ID": "your_org_uuid"
      }
    }
  }
}

Available Tools

Public Tools (No Auth Required)

| Tool | Description | |------|-------------| | chains_list | List all 42+ supported blockchain chains | | chain_check | Check if a specific chain is supported | | balance_get | Get wallet balance (native + tokens) — supports historical | | block_at_timestamp | Convert timestamp to block number for historical queries | | tx_chains_list | List chains that support transaction explorer | | tx_list | Fetch transaction history for a wallet | | tx_mappings_list | List available CSV export mapping templates | | tx_export | Export transactions as CSV |

Authenticated Tools (API Key Required)

| Tool | Description | |------|-------------| | wallets_list | List organization wallets | | wallet_get | Get wallet details by ID | | wallet_stats | Get organization wallet dashboard stats | | wallet_assets | Get aggregated asset breakdown | | balance_refresh | Trigger balance refresh for a wallet |

Usage Examples

Get Wallet Balance

Use balance_get with address="0x..." and chain="ethereum"

Historical Balance

Use balance_get with address="0x...", chain="ethereum", and block=18500000

Or use timestamp:

First use block_at_timestamp with chain="ethereum" and timestamp=1700000000
Then use balance_get with the returned block number

Transaction History

Use tx_list with address="0x...", chain="ethereum", limit=50

Filter by Date

Use tx_list with address="0x...", chain="polygon", from_date="2024-01-01", to_date="2024-06-30"

Rate Limits

Public endpoints are rate-limited to 10 requests per minute per IP. The API will return 429 if exceeded.

Testing

# Set API URL (required)
export FREXPLORER_BASE_URL=https://backend-production-2871d.up.railway.app

# Run tests
npm test

Project Structure

frexplorer-mcp-server/
├── src/
│   ├── api-client.ts    # HTTP client for Frexplorer API
│   ├── tools.ts         # MCP tool definitions (13 tools)
│   └── index.ts         # Server entry point
├── test/
│   └── test-tools.ts    # Automated test suite
├── docs/
│   └── TEST-RESULTS.md  # Test results
├── dist/                # Compiled JavaScript
├── .env.example
├── .gitignore
├── package.json
├── tsconfig.json
└── README.md

License

MIT

Author

Ore Phillips (@oregpt)

Links