The Aerodrome plugin covers token swaps and basic-pool (vAMM/sAMM) liquidity provision on Base. It uses the Velodrome sugar-sdk Python library locally to discover pools, build swap routes, and prepare deposit/withdraw/stake/claim calldata. Calldata is then submitted through Base MCP’sDocumentation Index
Fetch the complete documentation index at: https://docs.base.org/llms.txt
Use this file to discover all available pages before exploring further.
send_calls for user approval.
Chain: Base mainnet.
Operations: swap quote/execute (basic pools), basic pool deposit/withdraw, position queries, gauge stake/unstake, claim emissions/fees.
Try it
Swap
Provide liquidity
Withdraw
Pattern
sugar-sdk’s write methods (swap_from_quote, deposit, withdraw, stake, claim_emissions) normally sign and broadcast transactions with a local private key. The plugin monkey-patches sign_and_send_tx to capture the unsigned {to, data, value} instead, then passes the captured calls to Base MCP’s send_calls for user approval. The same bridge handles ERC-20 approvals (USDC/WETH), Universal Router swap execution, and Router LP operations.
The public
https://mainnet.base.org RPC enforces a 10-call-per-batch limit and rate-limits concurrent batches, which breaks sugar-sdk’s default asyncio.gather pagination. The plugin reference includes a patches.py that switches to sequential batching to work around this. For production usage prefer a paid RPC (Alchemy, QuickNode).Reference
Full plugin spec on GitHub
Setup, RPC compatibility patches, calldata-bridge code, swap/LP orchestration patterns, and what works vs. what doesn’t on the public RPC.