sell-token
Execute token sales on the Pump.fun platform by specifying the token address, amount, and slippage tolerance through the MCP server for Solana-based transactions.
Instructions
Sell a Pump.fun token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | No | Name of the account to use | default |
sellAmount | Yes | Amount of tokens to sell (0 for all) | |
slippageBasisPoints | No | Slippage tolerance in basis points (1% = 100) | |
tokenAddress | Yes | The token's mint address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountName": {
"default": "default",
"description": "Name of the account to use",
"type": "string"
},
"sellAmount": {
"description": "Amount of tokens to sell (0 for all)",
"minimum": 0,
"type": "number"
},
"slippageBasisPoints": {
"default": 100,
"description": "Slippage tolerance in basis points (1% = 100)",
"type": "number"
},
"tokenAddress": {
"description": "The token's mint address",
"type": "string"
}
},
"required": [
"tokenAddress",
"sellAmount"
],
"type": "object"
}