Zora Coins MCP Server
Provides access to the Zora Coins ecosystem on Base mainnet, enabling users to query coin data, explore markets, analyze profiles, and execute trades through a standardized interface.
README
🎨 Zora Coins MCP Server
A production-ready Model Context Protocol (MCP) server that provides seamless access to the Zora Coins ecosystem. Query coin data, explore markets, manage profiles, and execute trades on Base mainnet through a simple, standardized interface.
✨ Features
🔍 Query Tools (No wallet required)
- Market Exploration: Discover trending coins, top gainers, highest volume, and newest launches
- Coin Analytics: Get detailed market data, holder information, and trading history
- Social Features: Access comments, creator profiles, and community engagement
- Real-time Data: Live pricing, market caps, and trading volumes
⚡ Write Operations (Wallet required)
- Create Coins: Deploy new creator coins with custom metadata
- Trade: Buy/sell coins with ETH or ERC20 tokens
- Manage: Update coin metadata and payout recipients
🛠️ Developer Experience
- Type Safe: Built with TypeScript and Zod validation
- Error Handling: Comprehensive error messages and graceful failures
- Pagination: Support for large datasets with cursor-based pagination
- Flexible: Works with any MCP-compatible client (Claude Desktop, Cursor, etc.)
🚀 Quick Start
Installation Options
Option 1: NPX (Recommended - No Installation Required)
# Run directly with npx - always uses latest version
npx zora-coins-mcp
Option 2: NPX with Full Package Name
# Alternative NPX syntax
npx zora-coins-mcp-server
Option 3: Global Installation
# Install globally for persistent use
npm install -g zora-coins-mcp-server
# Then run with either command
zora-coins-mcp
# or
zora-coins-mcp-server
Basic Setup
- Create environment file:
cp .env.example .env
- Configure environment variables:
# Required for enhanced features (get from https://zora.co)
ZORA_API_KEY=your_api_key_here
# Optional: Custom RPC endpoint
BASE_RPC_URL=https://mainnet.base.org
# Required for write operations only
PRIVATE_KEY=0xYourPrivateKeyHere
- Test the server:
zora-coins-mcp
🔧 MCP Client Integration
Claude Desktop
Add to your ~/.claude/mcp.json:
Option 1: Using NPX (Recommended)
{
"mcpServers": {
"zora-coins": {
"command": "npx",
"args": ["zora-coins-mcp"],
"env": {
"ZORA_API_KEY": "your_api_key_here",
"BASE_RPC_URL": "https://mainnet.base.org",
"PRIVATE_KEY": "0xYourPrivateKeyHere"
}
}
}
}
Option 2: Using Global Installation
{
"mcpServers": {
"zora-coins": {
"command": "zora-coins-mcp",
"env": {
"ZORA_API_KEY": "your_api_key_here",
"BASE_RPC_URL": "https://mainnet.base.org",
"PRIVATE_KEY": "0xYourPrivateKeyHere"
}
}
}
}
Cursor IDE
Configure in your MCP settings:
Option 1: Using NPX (Recommended)
{
"name": "zora-coins",
"command": ["npx", "zora-coins-mcp"],
"env": {
"ZORA_API_KEY": "your_api_key_here"
}
}
Option 2: Using Global Installation
{
"name": "zora-coins",
"command": ["zora-coins-mcp"],
"env": {
"ZORA_API_KEY": "your_api_key_here"
}
}
Custom Integration
# Run as stdio server with npx
npx zora-coins-mcp
# Or if globally installed
zora-coins-mcp
# Development mode with live reload
npm run dev
📖 Available Tools
🏥 Health Check
zora_health- Server diagnostics and configuration status
🔍 Market Exploration
zora_explore_new- Recently created coinszora_explore_top_gainers- Biggest 24h gainerszora_explore_top_volume_24h- Highest trading volumezora_explore_most_valuable- Highest market capzora_explore_last_traded- Recently traded coins
💰 Coin Data
zora_get_coin- Comprehensive coin informationzora_get_coins- Batch fetch multiple coinszora_get_coin_holders- Token holder list with balanceszora_get_coin_swaps- Recent trading activityzora_get_coin_comments- Community comments
👤 Profile Management
zora_get_profile- User profile informationzora_get_profile_coins- Coins created by userzora_get_profile_balances- User's coin portfolio
⚡ Trading & Creation (Requires Wallet)
zora_create_coin- Deploy new creator coinzora_trade_coin- Buy/sell coinszora_update_coin_uri- Update metadatazora_update_payout_recipient- Change earnings recipient
💡 Usage Examples
Explore Trending Coins
// Get top 5 newest coins
await mcp.callTool("zora_explore_new", { count: 5 });
// Find biggest gainers
await mcp.callTool("zora_explore_top_gainers", { count: 3 });
Analyze a Specific Coin
// Get detailed coin information
await mcp.callTool("zora_get_coin", {
address: "0xd769d56f479e9e72a77bb1523e866a33098feec5"
});
// Check recent trading activity
await mcp.callTool("zora_get_coin_swaps", {
address: "0xd769d56f479e9e72a77bb1523e866a33098feec5",
first: 10
});
Profile Analysis
// Get profile information
await mcp.callTool("zora_get_profile", {
identifier: "base"
});
// See coins created by user
await mcp.callTool("zora_get_profile_coins", {
identifier: "jacob",
count: 5
});
Trading Operations
// Buy a coin with ETH
await mcp.callTool("zora_trade_coin", {
sellType: "eth",
buyType: "erc20",
buyAddress: "0x...",
amount: "0.001",
slippage: 0.05
});
// Create a new coin
await mcp.callTool("zora_create_coin", {
name: "My Creator Coin",
symbol: "MCC",
uri: "ipfs://...",
payoutRecipient: "0x..."
});
⚙️ Configuration
Environment Variables
| Variable | Required | Description |
|---|---|---|
ZORA_API_KEY |
Recommended | API key from zora.co for enhanced features |
BASE_RPC_URL |
Optional | Base mainnet RPC endpoint (defaults to public RPC) |
CHAIN_ID |
Optional | Chain ID (defaults to 8453 for Base) |
PRIVATE_KEY |
Write ops only | 0x-prefixed private key for transactions |
PLATFORM_REFERRER |
Optional | Address for referral attribution |
Getting API Keys
- Visit zora.co
- Go to Developer Settings
- Generate a new API key
- Add to your
.envfile
Note: The server works without an API key but may have rate limits and reduced functionality.
🔒 Security Best Practices
Private Key Safety
- Never commit private keys to version control
- Use environment variables or secure key management
- Consider using a dedicated wallet for trading operations
- Test with small amounts first
API Key Protection
- Store API keys securely
- Rotate keys regularly
- Monitor usage in Zora dashboard
- Use different keys for development/production
🛠️ Development
Local Development
# Clone the repository
git clone https://github.com/your-username/zora-coins-mcp-server.git
cd zora-coins-mcp-server
# Install dependencies
npm install
# Copy environment file
cp .env.example .env
# Start development server
npm run dev
Building
# Build TypeScript
npm run build
# Clean build directory
npm run clean
# Build and start
npm run build && npm start
Project Structure
zora-coins-mcp-server/
├── src/
│ └── index.ts # Main server implementation
├── dist/ # Compiled JavaScript
├── .env.example # Environment template
├── package.json # Package configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This file
🌐 Supported Networks
- Base Mainnet (8453) - Full support for all operations
- Other networks may have limited functionality
📚 Resources
Documentation
- Zora Coins SDK - Official SDK documentation
- Model Context Protocol - MCP specification
- Base Network - Layer 2 blockchain documentation
Community
- Zora Discord - Community support
- Base Discord - Network support
🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Workflow
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
⚠️ Disclaimer
This software is provided "as is" without warranty. Cryptocurrency trading involves risk. Always:
- Test with small amounts first
- Understand the risks involved
- Never invest more than you can afford to lose
- Do your own research (DYOR)
The Zora Coins on this platform are created for artistic and cultural purposes as collectibles, not as investments or financial instruments.
Built with ❤️ for the Zora ecosystem
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。