$PSG
$BAR
$JUV
$CITY
$MENGO
$ACM
v2.0 - Production Ready

Professional Chiliz MCP
Server

Advanced Model Context Protocol server for Chiliz blockchain. Real-time analytics, DeFi tools, and comprehensive fan token support.

npm install chiliz-mcp
52+
Tools
30+
Fan Tokens
5
API Integrations
100%
TypeScript
1inch DEX Aggregation
Real-time WebSocket
Advanced Analytics

Powerful Features

Everything you need for Chiliz blockchain integration in one comprehensive MCP server.

Analytics

Real-Time Analytics

Live price feeds, historical charts, whale detection, and market sentiment analysis.

Wallet

Wallet Management

Balance checking, transaction history, portfolio analytics, and multi-token support.

DeFi

1inch DEX Aggregation

Multi-DEX routing, optimal swap paths, gas estimation, and token approvals.

Contracts

Smart Contracts

Deploy ERC-20 tokens, NFT collections, and custom Solidity contracts.

Real-time

WebSocket Streaming

Real-time block updates, pending transactions, and contract event monitoring.

Monitoring

Fan Token Transfers

Real-time alerts for token transfers with configurable whale thresholds.

DeFi

FanX DEX Integration

Liquidity pool analytics, APY calculations, and impermanent loss tracking.

Analytics

Sports Correlation

Team performance impact analysis on token prices with match data integration.

Optimization

Gas Optimization

Real-time gas recommendations, cost analysis, and congestion detection.

Analytics

Portfolio Tracking

ROI analysis, diversity scores, performance metrics, and multi-wallet comparison.

DevOps

Testing Suite

Jest framework with 70% coverage target, ESM support, and CI integration.

DevOps

Docker Ready

Multi-stage builds, health checks, Prometheus metrics, and Grafana dashboards.

Supported Fan Tokens

30+ tokens across European clubs, Brazilian teams, and esports

$PSG
Paris Saint-Germain
Europe
$BAR
FC Barcelona
Europe
$JUV
Juventus
Europe
$CITY
Manchester City
Europe
$ACM
AC Milan
Europe
$INTER
Inter Milan
Europe
$MENGO
Flamengo
Brazil
$SCCP
Corinthians
Brazil
$SPFC
São Paulo
Brazil
$VERDAO
Palmeiras
Brazil
$UFC
UFC
Sports
$OG
OG Esports
Esports

Try It Now - Interactive Sandbox

Test Chiliz MCP tools with real blockchain data. No installation required.

Select a Tool

Demo mode with simulated responses

Response

Select a tool and click Execute to see results

Quick Examples

Quick Installation

Get up and running in minutes with npm, Docker, or direct integration with Claude Desktop.

Step 1

Clone & Install

git clone https://github.com/BrunoPessoa22/chiliz-mcp.git
cd chiliz-mcp
npm install
Step 2

Configure Environment

cp .env.example .env
# Edit .env with your configuration:
# CHILIZ_RPC_URL=https://rpc.ankr.com/chiliz
# NETWORK=mainnet
# PRIVATE_KEY=your_private_key (optional)
Step 3

Initialize Security

# Security is enabled by default
# Configure limits in code or via API:
# - Transaction limits: 1000 CHZ per tx
# - Daily limit: 10000 CHZ
# - Confirmation required for all tx
Step 4

Start Server

npm run build
npm start

# Or run in development mode:
npm run dev

Claude Desktop Integration

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

{
  "mcpServers": {
    "chiliz-mcp": {
      "command": "node",
      "args": ["/path/to/chiliz-mcp/dist/index.js"],
      "env": {
        "CHILIZ_RPC_URL": "https://rpc.ankr.com/chiliz",
        "NETWORK": "mainnet"
      }
    }
  }
}

Docker Deployment

Production-ready with Redis, Prometheus, and Grafana

# Using Docker Compose (Recommended)
docker-compose up -d

# With monitoring stack
docker-compose --profile monitoring up -d

# Or using Docker directly
docker build -t chiliz-mcp .
docker run -d --name chiliz-mcp \
  -p 9090:9090 \
  -e CHILIZ_RPC_URL=https://rpc.ankr.com/chiliz \
  chiliz-mcp

52+ MCP Tools

Comprehensive toolkit for every Chiliz blockchain operation.

Categories

Price Tools

get_token_priceGet current price for any fan token
get_price_historyHistorical price data with charts
get_market_overviewMarket cap rankings and trends

Example Usage

// Get Flamengo token price
const price = await mcp.callTool('get_token_price', {
  symbol: 'MENGO'
});

// Send tokens securely (requires confirmation)
const result = await mcp.callTool('send_fan_token', {
  to: '0x...',
  amount: '100',
  token: 'MENGO'
});

// Security: Add trusted address
await mcp.callTool('add_to_allowlist', {
  address: '0x...',
  label: 'My Hardware Wallet'
});

// Deploy NFT collection
const nft = await mcp.callTool('deploy_nft_collection', {
  name: 'Match Highlights',
  symbol: 'HIGHLIGHT',
  maxSupply: 10000,
  baseTokenURI: 'ipfs://QmXxx/'
});

Full Documentation

Comprehensive guides, API reference, and examples on GitHub.