Enterprise-grade MCP server platform for executing real DeFi operations
Boosty MCP DeFi Platform
Enterprise-Grade DeFi Infrastructure for Model Context Protocol
Production-ready MCP server platform for real DeFi operations on Solana and EVM chains. Volume generation, trading automation, wallet management, and market making ā all accessible via Claude Desktop.
š Table of Contents
- Overview
- What is Boosty?
- Architecture
- Core Features
- Packages
- Quick Start
- Installation
- Configuration
- MCP Tools Reference
- Trading Engine
- Volume Orchestration
- Wallet Management
- Security
- Deployment
- API Reference
- Examples
- Troubleshooting
- Contributing
- License
š Overview
Boosty is a production-grade Model Context Protocol (MCP) server platform designed for real DeFi operations. Unlike simulation tools, Boosty executes actual transactions on Solana mainnet and EVM chains, providing:
- Real Trading: Execute swaps via Jupiter, Raydium, Orca, and PumpFun
- Volume Generation: Coordinate thousands of wallets for organic-looking market activity
- Wallet Management: HD wallet derivation with military-grade encryption
- Market Making: Automated liquidity provision and spread management
- Price Analytics: Real-time price feeds, gas prices, and market sentiment
Why Boosty?
| Feature | Traditional Bots | Boosty MCP |
|---|---|---|
| Interface | Telegram/Discord | Claude Desktop (AI-native) |
| Setup | Complex configuration | Natural language commands |
| Flexibility | Fixed commands | Conversational AI |
| Integration | Standalone | Full MCP ecosystem |
| Extensibility | Limited | Plugin architecture |
| Learning Curve | Steep | Intuitive |
| Customization | Code changes required | Voice/text commands |
Key Differentiators
- AI-Native Interface: No command memorization ā just describe what you want
- Real Blockchain Operations: Not a simulator ā actual mainnet transactions
- Enterprise Architecture: Built for scale with PostgreSQL, Redis, and Docker
- Open Source: Fully auditable code with MIT license
- Multi-Chain: Solana-first with EVM support (Ethereum, Base, Arbitrum)
šÆ What is Boosty?
Boosty transforms Claude Desktop into a powerful DeFi control center. Through the Model Context Protocol, you can:
Natural Language DeFi Operations
You: "Buy $500 worth of BONK using Jupiter, split across 3 transactions over the next hour"
Boosty: ā
Created campaign with 3 scheduled buys
- Trade 1: $166.67 at 2:00 PM (completed)
- Trade 2: $166.67 at 2:20 PM (pending)
- Trade 3: $166.66 at 2:40 PM (pending)
Volume Generation Campaigns
You: "Start a volume campaign for my token at address Abc123...
Generate $50k daily volume with organic patterns,
use 200 wallets, vary transaction sizes between $50-500"
Boosty: š Volume Campaign Started
- Token: ABC/SOL
- Daily Target: $50,000
- Active Wallets: 200
- Pattern: Organic (gaussian distribution)
- Duration: 7 days
- Estimated Cost: 2.3 SOL (fees + rent)
Portfolio Management
You: "Show me all my positions across all wallets"
Boosty: š¼ Portfolio Summary (47 wallets)
Total Value: $234,567.89
Top Holdings:
- SOL: $89,234 (38.0%)
- USDC: $45,678 (19.5%)
- BONK: $23,456 (10.0%)
DeFi Positions:
- Raydium USDC/SOL LP: $34,567
- Marinade stSOL: $12,345
šļø Architecture
Boosty follows a modular monorepo architecture designed for enterprise scalability:
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā CLAUDE DESKTOP ā
ā (Model Context Protocol) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
Tools (5)
execute_swapExecute token swaps via Jupiter, Raydium, Orca, or PumpFun.create_volume_campaignCoordinate wallets for organic-looking market activity and volume generation.manage_walletsHD wallet derivation and management with encryption.get_portfolio_summaryShow all positions and holdings across all managed wallets.get_price_analyticsReal-time price feeds, gas prices, and market sentiment.Environment Variables
SOLANA_RPC_URLrequiredRPC endpoint for Solana mainnet operationsEVM_RPC_URLRPC endpoint for EVM chains (Ethereum, Base, Arbitrum)POSTGRES_URLDatabase connection string for enterprise storageREDIS_URLRedis connection for orchestration and cachingConfiguration
{
"mcpServers": {
"boosty-defi": {
"command": "npx",
"args": ["-y", "@nirholas/defi-mcp-servers"],
"env": {
"SOLANA_RPC_URL": "your_rpc_url",
"EVM_RPC_URL": "your_evm_rpc_url"
}
}
}
}