AnchorPad
Launch Solana coins from your AI. You approve each launch in your wallet and earn creator fees.
Should I use this
Quality & Safety
Findings (1)
- LOWin anchorpad_my_coins
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"anchorpad": {
"url": "https://anchorpad.fun/mcp"
}
}
}Remote endpoints
https://anchorpad.fun/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
🟢anchorpad_pairs
List the assets an AnchorPad coin can be paired with: SOL, stablecoins, crypto (BTC, ETH, ZEC, TAO, NEAR, ...), Solana tokens, memes and tokenized stocks. launchBuy says whether a first buy can be included in the launch; tradeHere whether AnchorPad trades it directly.
Input Schema
{
"type": "object",
"properties": {}
}⚪anchorpad_prepare_launch(name, symbol, pair, image, first_buy, ...)
Prepare a new Solana coin on AnchorPad, paired with an asset from anchorpad_pairs. Returns a sign link for the user; nothing happens until they approve it in their wallet. The approving wallet becomes the creator and earns 0.4% of every trade in the pair asset. The user pays about 0.027 SOL network rent plus any first buy. Give an image as an https URL (PNG, JPEG, GIF or WebP, up to 1 MB) if you have one; otherwise the approval page asks the user for it.
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Coin name, 1-32 bytes"
},
"symbol": {
"type": "string",
"description": "Ticker, 1-10 letters or digits"
},
"pair": {
"type": "string",
"description": "Pair symbol from anchorpad_pairs, e.g. SOL, USDC, ZEC. Default SOL"
},
"image": {
"type": "string",
"description": "Optional https URL (or data:image/... URL) of the coin image, up to 1 MB"
},
"first_buy": {
"type": "string",
"description": "Optional amount of the pair asset to buy in the launch transaction, e.g. \"0.1\". Default 0"
},
"sniper_shield": {
"type": "boolean",
"description": "Higher fee for bots in the first minute (15% falling to 1%). Default true"
},
"description": {
"type": "string",
"description": "Optional, up to 500 characters"
},
"twitter": {
"type": "string",
"description": "Optional https://x.com/... link"
},
"telegram": {
"type": "string",
"description": "Optional https://t.me/... link"
},
"website": {
"type": "string",
"description": "Optional https link"
}
},
"required": [
"name",
"symbol"
]
}⚪anchorpad_prepare_claim
Prepare a claim of the creator earnings on every coin of the wallet that approves (with an agent key: the agent's wallet). Returns a sign link for the user; nothing happens until they approve it in their wallet. Costs only the network fee. See anchorpad_my_coins first for what is unclaimed.
Input Schema
{
"type": "object",
"properties": {}
}⚪anchorpad_prepare_trade(mint, side, amount)
Prepare a buy or sell of an AnchorPad coin on its bonding curve. Returns a sign link for the user; nothing happens until they approve it in their wallet. amount is in the pair asset for a buy (e.g. 0.1 SOL) and in coins for a sell. The approval page shows the live price and a 3% slippage limit before the user signs.
Input Schema
{
"type": "object",
"properties": {
"mint": {
"type": "string",
"description": "The coin's mint address"
},
"side": {
"type": "string",
"description": "buy or sell",
"enum": [
"buy",
"sell"
]
},
"amount": {
"type": "string",
"description": "Amount as a plain number, e.g. \"0.1\""
}
},
"required": [
"mint",
"side",
"amount"
]
}🟢anchorpad_request_status(id)
Whether a prepared request was approved: open (waiting for the user), done (with the coin or transaction signatures) or expired (links last 24 hours). Without id (agent key only), lists the agent's last 10 requests.
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Request id returned by a prepare tool"
}
}
}🟢anchorpad_my_coins(wallet)
A wallet's coins on AnchorPad, their links and unclaimed creator earnings.
Input Schema
{
"type": "object",
"properties": {
"wallet": {
"type": "string",
"description": "The user's Solana wallet address. Not needed with an agent key (the agent's wallet is used)"
}
}
}Community
Evidence