Connections & Capabilities
Connects To
Capabilities
Quickstart
Config
{
"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 <bsc/bsc-testnet>"
}
}
}
}Exposed MCP Tools (12)
get_default_wallet_addressRetrieves the configured default wallet address.
Read-only operation, no side effects.
get_default_token_addressRetrieves the configured default token address.
Read-only operation, no side effects.
switch_default_token_addressChanges the default token address used for transactions.
Modifies configuration, potential for user error.
get_balanceRetrieves the BNB balance of a specified address.
Read-only operation, no side effects.
get_token_balanceRetrieves the token balance of a specified address for a given token.
Read-only operation, no side effects.
transferTransfers BNB to a specified recipient address.
Transfers funds, high risk of loss if incorrect address.
transfer_tokenTransfers tokens to a specified recipient address.
Transfers tokens, high risk of loss if incorrect address or token.
swap_tokenSwaps one token for another using PancakeSwap.
Involves financial transactions with external DEX, risk of slippage and loss.
get_token_priceRetrieves the price of a token in BNB.
Read-only operation, no side effects.
buy_tokenBuys tokens with BNB using PancakeSwap.
Involves financial transactions, risk of price volatility and slippage.
sell_tokenSells tokens for BNB using PancakeSwap.
Involves financial transactions, risk of price volatility and slippage.
claim_rewardsClaims rewards for a specified token.
Potentially interacts with smart contracts, risk of unexpected behavior.
Safety Assessment
This service provides direct access to blockchain operations, making it highly risky if misconfigured or compromised. It is safe only when used with extreme caution, with a dedicated test wallet, and with strict controls on the amounts being transacted. The lack of sandboxing and direct private key access make it inherently dangerous for general use.
- Requires explicit wallet address and private key configuration.
- Operations are limited to the Binance Smart Chain.
- Includes error handling and status tracking for transactions.
- Direct access to private keys poses a significant security risk.
- Enables financial transactions, potentially leading to loss of funds.
- Lack of sandboxing could expose the system to vulnerabilities if compromised.
- No built-in rate limiting or spending limits.
