finance

LetsBonk (Solana Token Launcher)

by bjoernbonk

Create and manage Solana meme tokens effortlessly with LetsBonk (Solana Token Launcher) – easy IPFS setup, image uploads

Enables token creation and management on the Solana blockchain through the LetsBonk launchpad, handling IPFS metadata, image uploads, and Raydium integration for seamless meme token launches.

github stars

16

Direct Solana mainnet integrationAutomated IPFS metadata handling

best for

  • / Meme coin creators launching new tokens
  • / Solana DeFi traders and speculators
  • / Developers building token launch applications

capabilities

  • / Launch new tokens on LetsBonk platform
  • / Buy and sell existing tokens
  • / Upload token images to IPFS
  • / Manage token metadata
  • / Integrate with Raydium for trading

what it does

Creates and trades meme tokens on Solana blockchain through the LetsBonk launchpad platform. Handles the technical aspects of token launches including metadata and trading setup.

about

LetsBonk (Solana Token Launcher) is an official MCP server published by bjoernbonk that provides AI assistants with tools and capabilities via the Model Context Protocol. Create and manage Solana meme tokens effortlessly with LetsBonk (Solana Token Launcher) – easy IPFS setup, image uploads It is categorized under finance.

how to install

You can install LetsBonk (Solana Token Launcher) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

LetsBonk (Solana Token Launcher) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

bonk-mcp MCP server

The bonk-mcp server implements Solana blockchain functionality for the LetsBonk launchpad.

Features

  • Token launching: launch any token on letsbonk.fun
  • Token trading: buy/sell any token on letsbonk.fun

Configuration

The bonk-mcp server can be configured in Claude Desktop by adding it to the MCP servers configuration. You'll need to provide:

Quickstart

Install

Claude Desktop

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

<details> <summary>Development/Unpublished Servers Configuration</summary>
"mcpServers": {
  "bonk-mcp": {
    "command": "uv",
    "args": [
      "--directory",
      "<PATH_TO_BONK_MCP_DIRECTORY>/bonk-mcp",
      "run",
      "bonk-mcp"
    ],
    "env": {
      "KEYPAIR": "<YOUR_SOLANA_KEYPAIR>",
      "RPC_URL": "https://api.mainnet-beta.solana.com"
    }
  }
}
</details> <details> <summary>Published Servers Configuration</summary>
"mcpServers": {
  "bonk-mcp": {
    "command": "uvx",
    "args": [
      "bonk-mcp"
    ],
    "env": {
      "KEYPAIR": "<YOUR_SOLANA_KEYPAIR>",
      "RPC_URL": "https://api.mainnet-beta.solana.com"
    }
  }
}
</details>

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:
uv sync
  1. Build package distributions:
uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI:
uv publish

Note: You'll need to set PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN
  • Or username/password: --username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORD

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector uv --directory <PATH_TO_BONK_MCP_DIRECTORY>/bonk-mcp run bonk-mcp

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.