launch-token
Deploy a meme token on Solana using the Raydium launchpad via bonk-mcp MCP Server. Enter token details like name, symbol, description, and image URL to start.
Instructions
Launch a new meme token on Solana using Raydium launchpad
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Token description | |
image_url | Yes | Image URL to use for token | |
name | Yes | Token name | |
symbol | Yes | Token symbol/ticker | |
telegram | No | Telegram group URL (optional) | |
No | Twitter handle/URL (optional) | ||
website | No | Website URL (optional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Token description",
"type": "string"
},
"image_url": {
"description": "Image URL to use for token",
"type": "string"
},
"name": {
"description": "Token name",
"type": "string"
},
"symbol": {
"description": "Token symbol/ticker",
"type": "string"
},
"telegram": {
"description": "Telegram group URL (optional)",
"type": "string"
},
"twitter": {
"description": "Twitter handle/URL (optional)",
"type": "string"
},
"website": {
"description": "Website URL (optional)",
"type": "string"
}
},
"required": [
"name",
"symbol",
"description",
"image_url"
],
"type": "object"
}