@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
Maintainers
Readme
@openpulsechain/mcp-server
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-serverPro 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
