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

@openpulsechain/mcp-server

v2.1.0

Published

MCP server for OpenPulsechain Analytics — 28 tools for PulseChain on-chain data. Free: token prices, safety scores, bridge stats, leagues. Pro (API key): opportunity signals, pair analytics, whale alerts, gas, deployer reputation, smart money, AML funding

Downloads

693

Readme

@openpulsechain/mcp-server

smithery badge

MCP server that gives AI assistants (Claude, ChatGPT, Cursor, etc.) access to real-time PulseChain on-chain analytics.

Standard: 11 tools included, no auth, ready to use in 30 seconds. Pro: 9 additional tools (AML, forensic, smart money, per-wallet data) unlocked with an API key.

Quick Start (no API key)

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "openpulsechain": {
      "command": "npx",
      "args": ["-y", "@openpulsechain/mcp-server"]
    }
  }
}

Claude Code

Add to .claude/settings.json:

{
  "mcpServers": {
    "openpulsechain": {
      "command": "npx",
      "args": ["-y", "@openpulsechain/mcp-server"]
    }
  }
}

Run locally

npx @openpulsechain/mcp-server

Pro tier (9 extra tools)

To unlock Pro-tier tools, add your API key via the OPENPULSECHAIN_API_KEY env variable — no code change, just configuration:

{
  "mcpServers": {
    "openpulsechain": {
      "command": "npx",
      "args": ["-y", "@openpulsechain/mcp-server"],
      "env": {
        "OPENPULSECHAIN_API_KEY": "sk-opk-..."
      }
    }
  }
}

Get a key at https://openpulsechain.com/pricing.

Once set, the server logs starting in PRO mode to stderr and all 20 tools become callable. Without a key, calling a Pro tool returns a clear pro_tier_required error — your AI assistant will know what to tell the user.

Tools

Included (11 tools, no API key)

| Tool | Description | |------|-------------| | get-token-price | Current price, 24h change, volume, market cap | | get-token-info | Full token details: name, symbol, decimals, liquidity, holders | | get-token-history | Historical price data (OHLCV) — limited to 30 days without API key | | get-top-tokens | Top tokens sorted by volume or liquidity | | get-top-pairs | Top PulseX DEX trading pairs | | get-market-overview | Network overview: TVL, 24h volume, top gainers/losers | | get-token-safety | Scam analysis: honeypot detection, buy/sell tax, ownership score (A-F) | | get-token-liquidity | Detailed liquidity breakdown across all DEX pairs | | get-honeypots | Recently detected honeypot tokens | | get-bridge-stats | PulseChain bridge inflows/outflows, net flow (7 days) | | get-holder-leagues | Aggregated holder distribution tiers for core tokens |

💎 Pro tier (9) — requires OPENPULSECHAIN_API_KEY

| Tool | Description | |------|-------------| | check-address-risk | AML check: OFAC sanctions, known exploits, phishing flags | | get-deployer-reputation | Deployer track record: tokens deployed, dead ratio, rug patterns | | get-scam-alerts | Real-time scam radar: honeypots, LP removals, whale dumps | | get-smart-money-feed | Whale activity feed: large wallet movements | | get-recent-swaps | Recent large swaps on PulseX DEX | | get-wallet-balances | Token balances for any wallet | | get-wallet-swaps | Swap history for any wallet | | get-funding-tree | Trace funding sources (2-level depth, bridge/DEX interactions) | | get-holder-rank | Wallet rank and tier across all tracked tokens |

Resources

The server also provides a pulsechain://tokens/core resource with addresses for all core PulseChain tokens (WPLS, HEX, PLSX, INC, eHEX, DAI, USDC, USDT, WETH, WBTC) — available to both tiers.

Example Conversations

"What's the current price of HEX on PulseChain?"

Included tool get-token-price — works without API key.

"Is this token safe? 0x1234..."

Included tool get-token-safety — honeypot detection, ownership, taxes, grade.

"Show me whale activity in the last 24 hours"

Pro tool get-smart-money-feed — requires API key.

"Where did the funds in this wallet come from?"

Pro tool get-funding-tree — requires API key.

"Is this address sanctioned by OFAC?"

Pro tool check-address-risk — requires API key.

Data Sources

All data comes from two backends:

  • api.openpulsechain.com — Token prices, pairs, market overview
  • safety.openpulsechain.com — Safety scores, alerts, smart money, leagues, tracing

Sourced from PulseX Subgraph, Blockscout Explorer, and on-chain RPC calls. No CoinGecko, no centralized aggregators.

Security

  • Read-only — no write operations, no wallet signing, no seed phrase access
  • Zero secrets in code — the optional API key is read from environment only
  • Rate limited — server-side (60–120 req/min per endpoint, stricter without API key)
  • Red Team audited — zero sensitive data exposure, MIT license
  • Forwarding — when an API key is present, it is sent as Authorization: Bearer ... to the backend and never cached

License

MIT