Raydium LaunchLab MCP
An MCP server that enables AI agents to launch, buy, and sell tokens on the Raydium Launchpad(also know as LaunchLab).
Features
- Mint Token: Create a bonding-curve-based token with customizable parameters (name, symbol, decimals, total supply, fundraising target, etc.) and upload metadata to IPFS.
- Buy Token: Purchase tokens from a Raydium Launchpad pool using SOL.
- Sell Token: Sell tokens back to a Raydium Launchpad pool.
- IPFS Integration: Uploads token images and metadata to IPFS for decentralized storage.
Prerequisites
- Node.js: Version 18.x or higher.
- Solana Wallet: A private key with sufficient SOL for transactions.
- Pinata Account: API credentials for IPFS storage (JWT and gateway).
Installation
Clone the Repository:
git clone https://github.com/kukapay/raydium-launchlab-mcp.git cd raydium-launchlab-mcpInstall Dependencies:
npm installConfigure MCP Client:
{ "mcpServers": { "raydium-launchlab": { "command": "node", "args": ["/path/to/raydium-launchlab-mcp/index.js"], "env": { "RPC_URL": "your-solana-rpc-url", "PRIVATE_KEY": "your-private-key-as-integer-array", "PINATA_JWT": "your-pinata-jwt", "PINATA_GATEWAY": "your-pinata-gateway" } } } }- Replace
/path/to/raydium-launchlab-mcpwith your actual installation path. - Replace
your-solana-rpc-urlwith your own Solana rpc url. - Replace
your-private-key-as-integer-arraywith your Solana wallet's private key (e.g.,[1,2,3,...]). - Obtain
PINATA_JWTandPINATA_GATEWAYfrom your Pinata account.
- Replace






