dexjup-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RPC_URL | Yes | Solana RPC URL (e.g., https://api.mainnet-beta.solana.com) | https://api.mainnet-beta.solana.com |
| TRADING_ENABLED | No | Set to 'true' to enable swap execution. Defaults to false (read-only). | false |
| SOLANA_PRIVATE_KEY | No | Solana private key for signing transactions (required only if TRADING_ENABLED=true). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pingA | Health check tool. Returns pong plus the current server time. |
| search_pairsA | Search DEX Screener for trading pairs matching free text, e.g. a token symbol or a pair like 'SOL/USDC'. Not scoped to one chain. |
| get_token_pairsA | List all DEX pools/pairs for a given token mint/contract address, sorted by 24h volume descending. |
| get_pairA | Get full detail for one specific DEX pair/pool by its pair address. |
| get_tokensA | Look up DEX pair data for up to 30 token addresses in a single call. Use this instead of repeated get_token_pairs calls when checking a list of tokens. |
| get_token_profilesA | List the latest trending/boosted token profiles from DEX Screener, optionally filtered to one chain. |
| get_jupiter_quoteA | Get a live Jupiter swap quote. Read-only — no wallet needed, executes nothing. Amounts are in the input mint's smallest unit (e.g. lamports for SOL). The returned quote is required as input to execute_swap. |
| get_token_overviewA | Combines DEX Screener market data (liquidity, volume, price change, socials) with a live Jupiter reference quote (1 SOL -> token) into one enriched response. Degrades gracefully: if the token has no DEX Screener listing or no Jupiter route, the other half of the response is still returned. |
| get_wallet_balanceA | Get the SOL balance (and optionally an SPL token balance) for a wallet address. If walletAddress is omitted, defaults to the server's configured trading wallet when trading is enabled. |
| get_swap_statusA | Check the confirmation status of a previously-submitted transaction signature, e.g. one returned by execute_swap. Read-only. |
| execute_swapA | Executes a REAL on-chain swap using a quote previously obtained from get_jupiter_quote or get_token_overview. Requires TRADING_ENABLED=true on the server and confirm: true on the call. Subject to server-side caps on amount, slippage, and quote freshness regardless of what is requested. This tool is always listed, even when trading is disabled, in which case it returns a structured refusal. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool has a distinct purpose: health check, trending tokens, quotes, token overview, wallet balance, swap status, swap execution, pair search, token pairs, pair detail, and batch lookup. The only minor overlap is between get_token_pairs and get_tokens, but the batch nature of get_tokens is clearly documented.
Tool names follow a consistent snake_case verb-noun pattern (ping, get_*, search_pairs, execute_swap). There is no mixing of camelCase or inconsistent verb styles.
With 11 tools, the server is well-scoped for DEX data and swap execution. Each tool serves a clear function without redundancy, fitting comfortably within the ideal 3-15 range.
The tool surface covers the core lifecycle of querying DEX data, obtaining quotes, executing swaps, and checking swap status, plus wallet balance. Gaps like historical price data or transaction history are minor and don't block primary workflows.