Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.base.org/llms.txt

Use this file to discover all available pages before exploring further.

The Bankr plugin uses the Bankr public API to surface the latest deployed token launches on Base, then routes the actual purchase through Base MCP’s swap tool. Bankr is the discovery layer; the swap is a regular swap call paying ETH (or USDC) for the target ERC-20. Chain: Base mainnet. Operations: list latest launches, filter by deployer or recency, and buy a chosen token with swap.

Try it

Browse
Show me the latest token launches on Base
Filter
Are there any launches from @0xtinylabs in the last hour?
Buy
Buy 0.001 ETH worth of the newest token on Bankr

Pattern

The plugin makes one web_request to https://api.bankr.bot/token-launches for the discovery feed, filters/presents the results client-side, and waits for the user to pick a token and amount. The buy itself is a single Base MCP swap call (fromAsset as ETH or USDC, toAsset as the launch token address) — same approval flow as any other write.
The Bankr feed is unfiltered. Listed tokens are not vetted, audited, or endorsed by Base — many are low-liquidity meme launches. Always confirm symbol, address, and amount with the user before swapping.
api.bankr.bot must be on the Base MCP web_request allowlist. If a request is rejected, fall back to the harness’s HTTP/fetch tool if one is available.

Reference

Full plugin spec on GitHub

API response shape, orchestration steps, symbol-collision and adversarial-metadata safety notes for new launches.