A backend MCP server that lets LLM agents perform wallet, transfer, swap and reward-claim operations on the Binance Smart Chain.
https://github.com/intentos-labs/beeper-mcpStop copying addresses and switching between your chat and wallet. This MCP server bridges the gap between AI trading advice and execution, letting your Claude or Cursor assistant directly execute BSC transactions while you strategize.
You're discussing token strategies with Claude, analyzing charts, getting solid trade recommendations. Then you tab over to MetaMask, manually copy addresses, double-check amounts, submit transactions, and hope you didn't fat-finger anything. By the time you execute, market conditions have shifted.
Meanwhile, your AI assistant sits there knowing exactly what should happen but unable to act on it.
Beeper MCP turns your AI assistant into a trading partner that can actually execute. Ask Claude to "buy 0.1 BNB worth of TOKEN and show me the transaction hash" – and watch it happen. No context switching, no manual copying, no delays.
Your assistant can now:
Strategy Development: Instead of theoretical discussions, test strategies with small amounts instantly. "Try buying $10 of this new token and let's see the slippage" becomes a single request.
Portfolio Management: "Check my CAKE balance, claim rewards, and swap half to BNB" executes as one conversation flow instead of multiple wallet interactions.
Risk Management: Set up your assistant to monitor positions and execute stop-losses or take-profits based on real-time data, not just recommendations you have to act on manually.
Multi-Token Analysis: Compare multiple tokens by actually acquiring small positions rather than just pulling static data. Your assistant can build micro-portfolios for testing thesis.
Clone and configure in under 5 minutes:
git clone https://github.com/intentos-labs/beeper-mcp.git
cd beeper-mcp
Add your BSC credentials to .env:
BEEPER_CHAIN=bsc
BEEPER_ACCOUNT=0xYourWallet
BEEPER_SECRET_KEY=your_private_key
BEEPER_TARGET_TOKEN=0xDefaultTokenAddress
Add to your Claude/Cursor MCP config:
{
"mcpServers": {
"beeper": {
"command": "uv",
"args": ["--directory", "path/to/beeper-mcp", "run", "src/beeper_mcp/server.py"],
"env": {
"BEEPER_ACCOUNT": "0xYourWallet",
"BEEPER_SECRET_KEY": "your_private_key"
}
}
}
}
Start with testnet (BEEPER_CHAIN=bsc-testnet) to experiment risk-free.
Rather than building another trading interface, this plugs directly into tools you already use for analysis and strategy. Your existing Claude conversations about DeFi become executable workflows.
The server handles the blockchain complexity – gas estimation, transaction signing, error handling, slippage protection – while your assistant focuses on strategy and timing.
Perfect for developers building DeFi products who need rapid iteration, researchers testing tokenomics theories, or anyone tired of the friction between AI insights and blockchain execution.
Your next trading conversation just became your next executed trade.