Get a Jupiter swap quote for any Solana token pair. Returns output amount, price impact, route, and fees. Essential before executing any trade.
| Name | Type | Required | Description |
|---|---|---|---|
| inputMint | string | required | Input token mint address (base58) |
| outputMint | string | required | Output token mint address (base58) |
| amount | string | required | Input amount in smallest units (e.g. '1000000' for 1 USDC) |
| slippageBps | string | optional | Slippage tolerance in basis points (default: 50 = 0.5%) |
// MCP tool call
{
"name": "swap_quote",
"arguments": {
"inputMint": "",
"outputMint": "",
"amount": "",
"slippageBps": ""
}
}
// Add to your MCP config — this tool is immediately available
{
"mcpServers": {
"toolbooth": { "url": "https://toolbooth.io/mcp" }
}
}