MCP server
by bjoernbonk
Create and manage Solana meme tokens effortlessly with LetsBonk (Solana Token Launcher) – easy IPFS setup, image uploads
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.
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.
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.
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
LetsBonk (Solana Token Launcher) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: LetsBonk (Solana Token Launcher) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
LetsBonk (Solana Token Launcher) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
LetsBonk (Solana Token Launcher) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We wired LetsBonk (Solana Token Launcher) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated LetsBonk (Solana Token Launcher) against two servers with overlapping tools; this profile had the clearer scope statement.
LetsBonk (Solana Token Launcher) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
LetsBonk (Solana Token Launcher) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
LetsBonk (Solana Token Launcher) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
LetsBonk (Solana Token Launcher) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 66
The bonk-mcp server implements Solana blockchain functionality for the LetsBonk launchpad.
The bonk-mcp server can be configured in Claude Desktop by adding it to the MCP servers configuration. You'll need to provide:
KEYPAIR: Your Solana keypairRPC_URL: Solana RPC endpoint (e.g., https://api.mainnet-beta.solana.com)On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
"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>
To prepare the package for distribution:
uv sync
uv build
This will create source and wheel distributions in the dist/ directory.
uv publish
Note: You'll need to set PyPI credentials via environment variables or command flags:
--token or UV_PUBLISH_TOKEN--username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORDSince 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.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.