Loading...
{
"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>"
}
}
}
}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.
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.