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-mcpPowerful Features
Everything you need for Chiliz blockchain integration in one comprehensive MCP server.
Real-Time Analytics
Live price feeds, historical charts, whale detection, and market sentiment analysis.
Wallet Management
Balance checking, transaction history, portfolio analytics, and multi-token support.
1inch DEX Aggregation
Multi-DEX routing, optimal swap paths, gas estimation, and token approvals.
Smart Contracts
Deploy ERC-20 tokens, NFT collections, and custom Solidity contracts.
WebSocket Streaming
Real-time block updates, pending transactions, and contract event monitoring.
Fan Token Transfers
Real-time alerts for token transfers with configurable whale thresholds.
FanX DEX Integration
Liquidity pool analytics, APY calculations, and impermanent loss tracking.
Sports Correlation
Team performance impact analysis on token prices with match data integration.
Gas Optimization
Real-time gas recommendations, cost analysis, and congestion detection.
Portfolio Tracking
ROI analysis, diversity scores, performance metrics, and multi-wallet comparison.
Testing Suite
Jest framework with 70% coverage target, ESM support, and CI integration.
Docker Ready
Multi-stage builds, health checks, Prometheus metrics, and Grafana dashboards.
Supported Fan Tokens
30+ tokens across European clubs, Brazilian teams, and 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.
Clone & Install
git clone https://github.com/BrunoPessoa22/chiliz-mcp.git
cd chiliz-mcp
npm installConfigure 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)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 txStart Server
npm run build
npm start
# Or run in development mode:
npm run devClaude 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-mcp52+ MCP Tools
Comprehensive toolkit for every Chiliz blockchain operation.
Categories
Price Tools
get_token_priceGet current price for any fan tokenget_price_historyHistorical price data with chartsget_market_overviewMarket cap rankings and trendsExample 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.