A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Open-source PulseChain analytics platform — token prices, safety scoring, smart money tracking, holder leagues, bridge s
Open-source analytics platform for PulseChain.
Live: openpulsechain.com · Dune: Bridge Analytics
Not affiliated with PulseChain, PulseX, or any related entity. Data is for informational purposes only — not financial advice.
| Module | Description |
|---|---|
| Dashboard | 16-page web app: Overview, DEX, Tokens, Bridge, Whales, Intelligence, Safety, Alerts, Smart Money, Leagues, Heart Law, Wallet Profiles, Token Safety, MCP/API, Privacy |
| Token Safety API | FastAPI with 25 public endpoints: safety scores, scam radar, deployer reputation, smart money, wallet analysis, leagues, bridge stats, funding trees |
| REST API | FastAPI with 12 endpoints: tokens, prices, history, pairs, market overview, safety proxies |
| MCP Server | Model Context Protocol server with 20 tools for AI assistants |
| Chrome Extension | Token safety scores, transaction guard, portfolio tracker, scam alerts |
| Indexers | 23 Python cron jobs collecting on-chain data every 5-15 min |
| Dune | 9 SQL queries + 20 visualizations for bridge analytics (Ethereum-side) |
derivedUSD — no CoinGecko dependency for PulseChain tokensPulseX Subgraph ──┐
DefiLlama API ────┤
PulseChain RPC ───┤──> Python Indexers ──> PostgreSQL (RLS)
Blockscout API ───┘ │
┌─────────┼──────────┐
│ │ │
React SPA REST API Safety API
│ │
Dashboard safety.openpulsechain.com
16 pages + MCP 25 public endpoints
│
Chrome Extension
/
frontend/ # React dashboard (16 pages)
api/ # REST API FastAPI (tokens, prices, pairs)
token_safety/ # Safety API FastAPI (scores, scam radar, deployer, smart money, leagues)
indexers/ # 23 Python cron jobs (on-chain data collection)
live_cache/ # Real-time token pool cache (DexScreener)
mcp-server/ # MCP server for AI assistants (20 tools)
extension/ # Chrome browser extension
dune/ # SQL queries for Dune Analytics
docs/ # Documentation
git clone https://github.com/openpulsechain/openpulsechain.git
cd openpulsechain
| Module | Setup |
|---|---|
frontend/ | npm install && npm run dev |
indexers/ | pip install -r requirements.txt + .env config |
api/ | pip install -r requirements.txt && uvicorn main:app |
token_safety/ | pip install -r requirements.txt && uvicorn main:app |
mcp-server/ | npm install && npm run build |
extension/ | npm install && npm run build → load dist/ in Chrome |
| Data | Source | Access |
|---|---|---|
| Token prices (PulseChain) | PulseX Subgraph derivedUSD | Public |
| TVL, DEX volume | DefiLlama API | Public |
| Gas price, blocks | PulseChain RPC | Public |
| Bridge events (ETH-side) | Dune Analytics | Public (2500 credits/mo) |
| Bridge events (PLS-side) | PulseChain OmniBridge Subgraph | Public |
| Hyperlane transfers | Hyperlane Explorer API | Public |
| Contract analysis | PulseChain Scan API (Blockscout v2) | Public |
| Honeypot detection | FeeChecker contract (on-chain simulation) | On-chain |
| Token logos | PulseX CDN, Piteas GitHub, DexScreener | Public |
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
Secure MCP server for MySQL database interaction, queries, and schema management
via CLI