jupiter-mcp
Server Details
Jupiter - 4 tools for swap quotes, liquidity pools, and trading data
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- junct-bot/jupiter-mcp
- GitHub Stars
- 0
- Server Listing
- Jupiter MCP Server
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- Changed
quote_get16 fields changed- added
Input schema / properties / amountAdded value: +{ + "description": "- Raw amount to swap (before decimals) - Input Amount if `SwapMode=ExactIn` - Output Amount if `SwapMode=ExactOut`", + "type": "number" +} - added
Input schema / properties / asLegacyTransactionAdded value: +{ + "description": "- Instead of using versioned transaction, this will use the legacy transaction", + "type": "boolean" +} - added
Input schema / properties / dexesAdded value: +{ + "description": "- Multiple DEXes can be pass in by comma separating them - For example: `dexes=Raydium,Orca+V2,Meteora+DLMM` - If a DEX is indicated, the route will **only use** that DEX - Full list of DEXes here: https://lite-api.jup.ag/swap/v1/program-id-to-label", + "type": "array" +} - added
Input schema / properties / dynamicSlippageAdded value: +{ + "description": "- No longer applicable, only required to pass in via `/swap` endpoint", + "type": "boolean" +} - added
Input schema / properties / excludeDexesAdded value: +{ + "description": "- Multiple DEXes can be pass in by comma separating them - For example: `excludeDexes=Raydium,Orca+V2,Meteora+DLMM` - If a DEX is indicated, the route will **not use** that DEX - Full list of DEXes here: https://lite-api.jup.ag/swap/v1/program-id-to-label", + "type": "array" +} - added
Input schema / properties / inputMintAdded value: +{ + "description": "query parameter: inputMint (string)", + "type": "string" +} - added
Input schema / properties / instructionVersionAdded value: +{ + "description": "- The version of instruction to use in the swap program", + "type": "string" +} - added
Input schema / properties / maxAccountsAdded value: +{ + "description": "- Rough estimate of the max accounts to be used for the quote - Useful if composing your own transaction or to be more precise in resource accounting for better routes", + "type": "number" +} - added
Input schema / properties / onlyDirectRoutesAdded value: +{ + "description": "- Direct route limits Jupiter routing to single hop routes only - This may result in worse routes", + "type": "boolean" +} - added
Input schema / properties / outputMintAdded value: +{ + "description": "query parameter: outputMint (string)", + "type": "string" +} - added
Input schema / properties / platformFeeBpsAdded value: +{ + "description": "- Take fees in basis points - If `platformFeeBps` is passed in, the `feeAccount` in `/swap` must be passed as well", + "type": "number" +} - added
Input schema / properties / restrictIntermediateTokensAdded value: +{ + "description": "- Restrict intermediate tokens within a route to a set of more stable tokens - This will help to reduce exposure to potential high slippage routes", + "type": "boolean" +} - added
Input schema / properties / slippageBpsAdded value: +{ + "description": "- Default: 50 - This is threshold denoted in basis points. - If exact in and output amount exceeds the threshold, then the swap transaction will fail.", + "type": "number" +} - added
Input schema / properties / swapModeAdded value: +{ + "description": "- ExactOut is for supporting use cases where you need an exact output amount - In the case of `ExactIn`, the slippage is on the output token - In the case of `ExactOut`, the slippage is on the input token - Not all AMMs support `ExactOut`: Currently only Orca Whirlpool, Raydium CLMM, Raydium CPMM - We do not recommend using `ExactOut` for most use cases", + "type": "string" +} - removed
Input schema / properties / undefinedRemoved value: -{ - "description": "undefined parameter: undefined (unknown)", - "type": "string" -} - added
Input schema / requiredAdded value: +[ + "inputMint", + "outputMint", + "amount" +]
- Changed
swap_instructions_post14 fields changed- changed
Input schema / properties / asLegacyTransaction / descriptionPrevious value: -"- Builds a legacy transaction rather than the default versioned transaction\n- Used together with `asLegacyTransaction` in `/quote`, otherwise the transaction might be too large\n"New value: +"- Builds a legacy transaction rather than the default versioned transaction - Used together with `asLegacyTransaction` in `/quote`, otherwise the transaction might be too large" - changed
Input schema / properties / blockhashSlotsToExpiry / descriptionPrevious value: -"- Pass in the number of slots we want the transaction to be valid for\n- Example: If you pass in 10 slots, the transaction will be valid for ~400ms * 10 = approximately 4 seconds before it expires\n"New value: +"- Pass in the number of slots we want the transaction to be valid for - Example: If you pass in 10 slots, the transaction will be valid for ~400ms * 10 = approximately 4 seconds before it expires" - changed
Input schema / properties / computeUnitPriceMicroLamports / descriptionPrevious value: -"- To use an exact compute unit price to calculate priority fee\n- `computeUnitLimit (1400000) * computeUnitPriceMicroLamports`\n- We recommend using `prioritizationFeeLamports` and `dynamicComputeUnitLimit` instead of passing in your own compute unit price\n"New value: +"- To use an exact compute unit price to calculate priority fee - `computeUnitLimit (1400000) * computeUnitPriceMicroLamports` - We recommend using `prioritizationFeeLamports` and `dynamicComputeUnitLimit` instead of passing in your own compute unit price" - changed
Input schema / properties / destinationTokenAccount / descriptionPrevious value: -"- Public key of a token account that will be used to receive the token out of the swap\n- If not provided, the signer's token account will be used\n- If provided, we assume that the token account is already initialized\n- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive\n"New value: +"- Public key of a token account that will be used to receive the token out of the swap - If not provided, the signer's token account will be used - If provided, we assume that the token account is already initialized - `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive" - changed
Input schema / properties / dynamicComputeUnitLimit / descriptionPrevious value: -"- When enabled, it will do a swap simulation to get the compute unit used and set it in ComputeBudget's compute unit limit\n- This incurs one extra RPC call to simulate this\n- We recommend to enable this to estimate compute unit correctly and reduce priority fees needed or have higher chance to be included in a block\n"New value: +"- When enabled, it will do a swap simulation to get the compute unit used and set it in ComputeBudget's compute unit limit - This incurs one extra RPC call to simulate this - We recommend to enable this to estimate compute unit correctly and reduce priority fees needed or have higher chance to be included in a block" - changed
Input schema / properties / dynamicSlippage / descriptionPrevious value: -"- When enabled, it estimates slippage and apply it in the swap transaction directly, overwriting the `slippageBps` parameter in the quote response.\n- This is no longer maintained, we are focusing efforts on RTSE on Ultra Swap API\n"New value: +"- When enabled, it estimates slippage and apply it in the swap transaction directly, overwriting the `slippageBps` parameter in the quote response. - This is no longer maintained, we are focusing efforts on RTSE on Ultra Swap API" - changed
Input schema / properties / feeAccount / descriptionPrevious value: -"- An initialized token account that will be used to collect fees\n- The mint of the token account **can only be either the input or output mint of the swap**\n- Swap API no longer requires the use of the Referral Program\n- If `platformFeeBps` is passed in `/quote`, the `feeAccount` must be passed as well\n"New value: +"- An initialized token account that will be used to collect fees - The mint of the token account **can only be either the input or output mint of the swap** - Swap API no longer requires the use of the Referral Program - If `platformFeeBps` is passed in `/quote`, the `feeAccount` must be passed as well" - changed
Input schema / properties / nativeDestinationAccount / descriptionPrevious value: -"- Public key of an account that will be used to receive the native SOL token out of the swap\n- If not provided, the swap will default unwrap the WSOL and transfer the native SOL to the swap authority account\n- If provided, we will unwrap the WSOL and transfer the native SOL to the account\n- Only works if the output mint is SOL, is using the V2 instructions and the account passed in is not owned by token program\n- When sending native SOL to a new account, you must swap at least enough to cover the rent required to create it.\n- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive\n"New value: +"- Public key of an account that will be used to receive the native SOL token out of the swap - If not provided, the swap will default unwrap the WSOL and transfer the native SOL to the swap authority account - If provided, we will unwrap the WSOL and transfer the native SOL to the account - Only works if the output mint is SOL, is using the V2 instructions and the account passed in is not owned by token program - When sending native SOL to a new account, you must swap at least enough to cover the rent required to create it. - `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive" - changed
Input schema / properties / payer / descriptionPrevious value: -"- Allow a custom payer to pay for the transaction fees and rent of token accounts\n- Note that users can close their ATAs elsewhere and have you reopen them again, your fees should account for this\n"New value: +"- Allow a custom payer to pay for the transaction fees and rent of token accounts - Note that users can close their ATAs elsewhere and have you reopen them again, your fees should account for this" - changed
Input schema / properties / prioritizationFeeLamports / descriptionPrevious value: -"- To specify a level or amount of additional fees to prioritize the transaction\n- It can be used for EITHER priority fee OR Jito tip (not both at the same time)\n- If you want to include both, you will need to use `/swap-instructions` to add both at the same time\n- Defaults to `auto`, but preferred to use `priorityLevelWithMaxLamports` as it may be more accurate when accounting local fee market\n- Fixed lamports can be passed in as an integer in the `prioritizationFeeLamports` parameter\n"New value: +"- To specify a level or amount of additional fees to prioritize the transaction - It can be used for EITHER priority fee OR Jito tip (not both at the same time) - If you want to include both, you will need to use `/swap-instructions` to add both at the same time - Defaults to `auto`, but preferred to use `priorityLevelWithMaxLamports` as it may be more accurate when accounting local fee market - Fixed lamports can be passed in as an integer in the `prioritizationFeeLamports` parameter" - changed
Input schema / properties / skipUserAccountsRpcCalls / descriptionPrevious value: -"- When enabled, it will not do any additional RPC calls to check on required accounts\n- The returned swap transaction will still attempt to create required accounts regardless if it exists or not\n"New value: +"- When enabled, it will not do any additional RPC calls to check on required accounts - The returned swap transaction will still attempt to create required accounts regardless if it exists or not" - changed
Input schema / properties / trackingAccount / descriptionPrevious value: -"- Specify any public key that belongs to you to track the transactions\n- Useful for integrators to get all the swap transactions from this public key\n- Query the data using a block explorer like Solscan/SolanaFM or query like Dune/Flipside\n"New value: +"- Specify any public key that belongs to you to track the transactions - Useful for integrators to get all the swap transactions from this public key - Query the data using a block explorer like Solscan/SolanaFM or query like Dune/Flipside" - changed
Input schema / properties / useSharedAccounts / descriptionPrevious value: -"- The default is determined dynamically by the routing engine, allowing us to optimize for compute units, etc\n- This enables the usage of shared program accounts, this is essential as complex routing will require multiple intermediate token accounts which the user might not have\n- If true, you do not need to handle the creation of intermediate token accounts for the user\n- Do note, shared accounts route will fail on some new AMMs (low liquidity token)\n"New value: +"- The default is determined dynamically by the routing engine, allowing us to optimize for compute units, etc - This enables the usage of shared program accounts, this is essential as complex routing will require multiple intermediate token accounts which the user might not have - If true, you do not need to handle the creation of intermediate token accounts for the user - Do note, shared accounts route will fail on some new AMMs (low liquidity token)" - changed
Input schema / properties / wrapAndUnwrapSol / descriptionPrevious value: -"- To automatically wrap/unwrap SOL in the transaction, as WSOL is an SPL token while native SOL is not\n- When true and input mint is SOL, it will wrap the SOL amount to WSOL and swap\n- When true and output mint is SOL, it will unwrap the WSOL back to SOL\n- When false and input mint is SOL, it will use existing WSOL amount to swap\n- When false and output mint is SOL, it will not unwrap the WSOL to SOL\n- To set this parameter to false, you need to have the WSOL token account initialized\n"New value: +"- To automatically wrap/unwrap SOL in the transaction, as WSOL is an SPL token while native SOL is not - When true and input mint is SOL, it will wrap the SOL amount to WSOL and swap - When true and output mint is SOL, it will unwrap the WSOL back to SOL - When false and input mint is SOL, it will use existing WSOL amount to swap - When false and output mint is SOL, it will not unwrap the WSOL to SOL - To set this parameter to false, you need to have the WSOL token account initialized"
- Changed
swap_post14 fields changed- changed
Input schema / properties / asLegacyTransaction / descriptionPrevious value: -"- Builds a legacy transaction rather than the default versioned transaction\n- Used together with `asLegacyTransaction` in `/quote`, otherwise the transaction might be too large\n"New value: +"- Builds a legacy transaction rather than the default versioned transaction - Used together with `asLegacyTransaction` in `/quote`, otherwise the transaction might be too large" - changed
Input schema / properties / blockhashSlotsToExpiry / descriptionPrevious value: -"- Pass in the number of slots we want the transaction to be valid for\n- Example: If you pass in 10 slots, the transaction will be valid for ~400ms * 10 = approximately 4 seconds before it expires\n"New value: +"- Pass in the number of slots we want the transaction to be valid for - Example: If you pass in 10 slots, the transaction will be valid for ~400ms * 10 = approximately 4 seconds before it expires" - changed
Input schema / properties / computeUnitPriceMicroLamports / descriptionPrevious value: -"- To use an exact compute unit price to calculate priority fee\n- `computeUnitLimit (1400000) * computeUnitPriceMicroLamports`\n- We recommend using `prioritizationFeeLamports` and `dynamicComputeUnitLimit` instead of passing in your own compute unit price\n"New value: +"- To use an exact compute unit price to calculate priority fee - `computeUnitLimit (1400000) * computeUnitPriceMicroLamports` - We recommend using `prioritizationFeeLamports` and `dynamicComputeUnitLimit` instead of passing in your own compute unit price" - changed
Input schema / properties / destinationTokenAccount / descriptionPrevious value: -"- Public key of a token account that will be used to receive the token out of the swap\n- If not provided, the signer's token account will be used\n- If provided, we assume that the token account is already initialized\n- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive\n"New value: +"- Public key of a token account that will be used to receive the token out of the swap - If not provided, the signer's token account will be used - If provided, we assume that the token account is already initialized - `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive" - changed
Input schema / properties / dynamicComputeUnitLimit / descriptionPrevious value: -"- When enabled, it will do a swap simulation to get the compute unit used and set it in ComputeBudget's compute unit limit\n- This incurs one extra RPC call to simulate this\n- We recommend to enable this to estimate compute unit correctly and reduce priority fees needed or have higher chance to be included in a block\n"New value: +"- When enabled, it will do a swap simulation to get the compute unit used and set it in ComputeBudget's compute unit limit - This incurs one extra RPC call to simulate this - We recommend to enable this to estimate compute unit correctly and reduce priority fees needed or have higher chance to be included in a block" - changed
Input schema / properties / dynamicSlippage / descriptionPrevious value: -"- When enabled, it estimates slippage and apply it in the swap transaction directly, overwriting the `slippageBps` parameter in the quote response.\n- This is no longer maintained, we are focusing efforts on RTSE on Ultra Swap API\n"New value: +"- When enabled, it estimates slippage and apply it in the swap transaction directly, overwriting the `slippageBps` parameter in the quote response. - This is no longer maintained, we are focusing efforts on RTSE on Ultra Swap API" - changed
Input schema / properties / feeAccount / descriptionPrevious value: -"- An initialized token account that will be used to collect fees\n- The mint of the token account **can only be either the input or output mint of the swap**\n- Swap API no longer requires the use of the Referral Program\n- If `platformFeeBps` is passed in `/quote`, the `feeAccount` must be passed as well\n"New value: +"- An initialized token account that will be used to collect fees - The mint of the token account **can only be either the input or output mint of the swap** - Swap API no longer requires the use of the Referral Program - If `platformFeeBps` is passed in `/quote`, the `feeAccount` must be passed as well" - changed
Input schema / properties / nativeDestinationAccount / descriptionPrevious value: -"- Public key of an account that will be used to receive the native SOL token out of the swap\n- If not provided, the swap will default unwrap the WSOL and transfer the native SOL to the swap authority account\n- If provided, we will unwrap the WSOL and transfer the native SOL to the account\n- Only works if the output mint is SOL, is using the V2 instructions and the account passed in is not owned by token program\n- When sending native SOL to a new account, you must swap at least enough to cover the rent required to create it.\n- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive\n"New value: +"- Public key of an account that will be used to receive the native SOL token out of the swap - If not provided, the swap will default unwrap the WSOL and transfer the native SOL to the swap authority account - If provided, we will unwrap the WSOL and transfer the native SOL to the account - Only works if the output mint is SOL, is using the V2 instructions and the account passed in is not owned by token program - When sending native SOL to a new account, you must swap at least enough to cover the rent required to create it. - `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive" - changed
Input schema / properties / payer / descriptionPrevious value: -"- Allow a custom payer to pay for the transaction fees and rent of token accounts\n- Note that users can close their ATAs elsewhere and have you reopen them again, your fees should account for this\n"New value: +"- Allow a custom payer to pay for the transaction fees and rent of token accounts - Note that users can close their ATAs elsewhere and have you reopen them again, your fees should account for this" - changed
Input schema / properties / prioritizationFeeLamports / descriptionPrevious value: -"- To specify a level or amount of additional fees to prioritize the transaction\n- It can be used for EITHER priority fee OR Jito tip (not both at the same time)\n- If you want to include both, you will need to use `/swap-instructions` to add both at the same time\n- Defaults to `auto`, but preferred to use `priorityLevelWithMaxLamports` as it may be more accurate when accounting local fee market\n- Fixed lamports can be passed in as an integer in the `prioritizationFeeLamports` parameter\n"New value: +"- To specify a level or amount of additional fees to prioritize the transaction - It can be used for EITHER priority fee OR Jito tip (not both at the same time) - If you want to include both, you will need to use `/swap-instructions` to add both at the same time - Defaults to `auto`, but preferred to use `priorityLevelWithMaxLamports` as it may be more accurate when accounting local fee market - Fixed lamports can be passed in as an integer in the `prioritizationFeeLamports` parameter" - changed
Input schema / properties / skipUserAccountsRpcCalls / descriptionPrevious value: -"- When enabled, it will not do any additional RPC calls to check on required accounts\n- The returned swap transaction will still attempt to create required accounts regardless if it exists or not\n"New value: +"- When enabled, it will not do any additional RPC calls to check on required accounts - The returned swap transaction will still attempt to create required accounts regardless if it exists or not" - changed
Input schema / properties / trackingAccount / descriptionPrevious value: -"- Specify any public key that belongs to you to track the transactions\n- Useful for integrators to get all the swap transactions from this public key\n- Query the data using a block explorer like Solscan/SolanaFM or query like Dune/Flipside\n"New value: +"- Specify any public key that belongs to you to track the transactions - Useful for integrators to get all the swap transactions from this public key - Query the data using a block explorer like Solscan/SolanaFM or query like Dune/Flipside" - changed
Input schema / properties / useSharedAccounts / descriptionPrevious value: -"- The default is determined dynamically by the routing engine, allowing us to optimize for compute units, etc\n- This enables the usage of shared program accounts, this is essential as complex routing will require multiple intermediate token accounts which the user might not have\n- If true, you do not need to handle the creation of intermediate token accounts for the user\n- Do note, shared accounts route will fail on some new AMMs (low liquidity token)\n"New value: +"- The default is determined dynamically by the routing engine, allowing us to optimize for compute units, etc - This enables the usage of shared program accounts, this is essential as complex routing will require multiple intermediate token accounts which the user might not have - If true, you do not need to handle the creation of intermediate token accounts for the user - Do note, shared accounts route will fail on some new AMMs (low liquidity token)" - changed
Input schema / properties / wrapAndUnwrapSol / descriptionPrevious value: -"- To automatically wrap/unwrap SOL in the transaction, as WSOL is an SPL token while native SOL is not\n- When true and input mint is SOL, it will wrap the SOL amount to WSOL and swap\n- When true and output mint is SOL, it will unwrap the WSOL back to SOL\n- When false and input mint is SOL, it will use existing WSOL amount to swap\n- When false and output mint is SOL, it will not unwrap the WSOL to SOL\n- To set this parameter to false, you need to have the WSOL token account initialized\n"New value: +"- To automatically wrap/unwrap SOL in the transaction, as WSOL is an SPL token while native SOL is not - When true and input mint is SOL, it will wrap the SOL amount to WSOL and swap - When true and output mint is SOL, it will unwrap the WSOL back to SOL - When false and input mint is SOL, it will use existing WSOL amount to swap - When false and output mint is SOL, it will not unwrap the WSOL to SOL - To set this parameter to false, you need to have the WSOL token account initialized"
4 tool updates
- First observed
program_id_to_label_get - First observed
quote_get - First observed
swap_instructions_post - First observed
swap_post
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Solana Jupiter quotes and package preflight for AI agents. Free sample. Paid x402 on Solana USDC.
SolanaOracle - 12 Solana tools: SPL tokens, Jupiter, validators, rent, programs, NFTs.
Solana tools over MCP: Jupiter swaps, SPL tokens, Metaplex NFTs, SNS domains, network stats.
Solana MCP: Jupiter swaps, SPL transfers, Metaplex NFTs, Bonfida SNS, slot/TPS, staking.
Related MCP Servers
- FlicenseAqualityBmaintenanceMCP server providing AI agents with native access to Jupiter's full DeFi stack on Solana. It offers 17 tools covering swaps, tokens, lending, limit orders, DCA, prediction markets, perpetuals, and portfolio management.16-
- FlicenseAqualityDmaintenanceMCP server for Jupiter API on Solana, enabling immediate swaps via Ultra API and limit orders via Trigger API.101-
- AlicenseNot gradedqualityBmaintenanceEnables fetching best swap quotes on Solana via Jupiter aggregator with pay-per-call x402 micropayments.MIT

trade-router-mcpofficial
AlicenseBqualityDmaintenanceNon-custodial Solana swap & limit order engine for AI agents. 21 tools - swap, limit, trailing, TWAP, DCA, combo orders - across Raydium, PumpSwap, Orca, Meteora. Jito MEV-protected execution. Ed25519-verified server messages. Private key never leaves the process.212053MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct purpose: program_id_to_label_get maps program IDs to labels for error handling, quote_get retrieves a quote for a swap, swap_instructions_post generates instructions from a quote, and swap_post creates a swap transaction. There is no overlap in functionality, and the descriptions clearly differentiate their roles in the swap workflow.
The tool names follow a consistent snake_case pattern with a verb_noun structure (e.g., program_id_to_label_get, quote_get, swap_instructions_post, swap_post), which is predictable and readable. The minor deviation is that 'program_id_to_label_get' includes an extra 'to_label' element, but overall the naming is highly consistent.
With 4 tools, the server is well-scoped for its purpose of facilitating swaps on Jupiter. Each tool earns its place by covering essential steps: mapping program IDs, getting quotes, generating instructions, and executing swaps. This count is appropriate and avoids being too thin or heavy.
The tool set provides complete coverage for the swap domain, including error mapping (program_id_to_label_get), quote retrieval (quote_get), instruction generation (swap_instructions_post), and transaction creation (swap_post). There are no obvious gaps; agents can perform a full swap workflow without dead ends.