A backend service for executing beeper transactions on Binance Smart Chain (BSC). This service provides a set of tools for interacting with the BSC blockchain, including balance checking, balance transfers, token transfers, token swaps in Pancakeswap and beeper reward claims. - Get BNB and token balances - Transfer BNB and tokens - Swap tokens in Pancakeswap - Get token prices - Buy and sell token
Add this skill
npx mdskills install intentos-labs/beeper-mcpComprehensive BSC blockchain MCP server with trading, transfers, and token management tools
A backend service for executing beeper transactions on Binance Smart Chain (BSC). This service provides a set of tools for interacting with the BSC blockchain, including balance checking, balance transfers, token transfers, token swaps in Pancakeswap and beeper reward claims.
Create a .env file in the project root with the following variables:
BEEPER_CHAIN=
BEEPER_ACCOUNT=
BEEPER_SECRET_KEY=
BEEPER_TARGET_TOKEN= # Optional
The service exposes the following MCP tools:
get_default_wallet_address() -> str: Get the default wallet addressget_default_token_address() -> str: Get the default token addressswitch_default_token_address(new_token_address: str) -> str: Switch to a new default token addressget_balance(address: str) -> str: Get BNB balance of an addressget_token_balance(address: str, token_address: str) -> str: Get token balance of an addresstransfer(recipient_address: str, amount: Decimal = 0.01) -> dict: Transfer BNB to an addresstransfer_token(recipient_address: str, token_address: str, amount: Decimal = 0.01) -> dict: Transfer tokens to an addressswap_token(token_in: str, token_out: str, amount: Decimal = 0.01) -> dict: Swap between tokensget_token_price(token_address: str) -> float: Get token price in BNBbuy_token(token_address: str, amount: Decimal = 0.01) -> dict: Buy tokens with BNBsell_token(token_address: str, amount: Decimal = 0.01) -> dict: Sell tokens for BNBclaim_rewards(token_address: str) -> dict: Claim rewards for a tokengit clone https://github.com/unibaseio/beeper-mcp.git
cd beeper-mcp
# start server over stdio
uv run src/beeper_mcp/server.py
The sse service will start on port 8000 by default. You can specify a different port using the --port argument:
uv run src/beeper_mcp/server.py --port 8008 --transport=sse
{
"mcpServers": {
"beeper": {
"command": "uv",
"args": [
"--directory",
"path/to/beeper-mcp",
"run",
"src/beeper_mcp/server.py"
],
"env": {
"BEEPER_ACCOUNT": "your account, 0x...",
"BEEPER_SECRET_KEY": "your private key or in .env",
"BEEPER_TARGET_TOKEN": "default token address",
"BEEPER_CHAIN": "chain type "
}
}
}
}
call functions in llm chat


Install via CLI
npx mdskills install intentos-labs/beeper-mcpBeeper MCP is a free, open-source AI agent skill. A backend service for executing beeper transactions on Binance Smart Chain (BSC). This service provides a set of tools for interacting with the BSC blockchain, including balance checking, balance transfers, token transfers, token swaps in Pancakeswap and beeper reward claims. - Get BNB and token balances - Transfer BNB and tokens - Swap tokens in Pancakeswap - Get token prices - Buy and sell token
Install Beeper MCP with a single command:
npx mdskills install intentos-labs/beeper-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Beeper MCP works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.