Paloma DEX MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PRIVATE_KEY | Yes | Your private key for transaction signing. WARNING: Keep this secure and never commit to version control | |
| PUSD_TOKEN_ETH | Yes | PUSD token address for Ethereum Mainnet | |
| ETF_CONNECTOR_ETH | Yes | ETF connector address for Ethereum Mainnet | |
| PUSD_CONNECTOR_ETH | Yes | PUSD connector address for Ethereum Mainnet | |
| MORALIS_SERVICE_API_KEY | No | Moralis API key for enhanced features (optional) |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_account_infoB | Get account information including address and balances across all chains. |
| get_pusd_balanceB | Get PUSD token balance on specified chain. |
| get_chain_infoB | Get detailed information about a specific chain. |
| list_supported_chainsB | List all supported chains with their configurations. |
| get_address_balancesA | Get balances for a specific address across all chains (concurrent execution). |
| get_address_balance_single_chainA | Get balance for a specific address on a single chain (faster). |
| get_etf_tokensB | Get available ETF tokens on a specific chain. |
| get_etf_priceB | Get buy and sell prices for an ETF token. |
| get_etf_price_by_symbolA | Get ETF price by token symbol from Paloma DEX. |
| get_etf_price_by_paloma_denomB | Get ETF price by Paloma denomination. |
| get_etf_balanceB | Get ETF token balance for a wallet address. |
| buy_etf_tokenA | Buy ETF tokens using input tokens (simulation only - no actual transaction). |
| sell_etf_tokenA | Sell ETF tokens back to base currency (simulation only - no actual transaction). |
| get_available_trading_tokensB | Get available tokens for trading on a specific chain. |
| get_token_price_estimateA | Get real-time price estimate for token swap. |
| approve_token_spendingA | Approve token spending for trading (two-step approval process). |
| execute_token_swapB | Execute a token swap using the Trader contract. |
| validate_trade_quoteA | Validate a trade against max spread and liquidity requirements. |
| check_token_allowanceA | Check token allowance for a specific owner and spender. |
| add_liquidityB | Add liquidity to a trading pool using the Trader contract. |
| remove_liquidityB | Remove liquidity from a trading pool using the Trader contract. |
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 21 tools
Most tools have distinct purposes with clear boundaries, such as add_liquidity vs. remove_liquidity or execute_token_swap vs. validate_trade_quote. However, some overlap exists in ETF price retrieval tools (get_etf_price, get_etf_price_by_paloma_denom, get_etf_price_by_symbol), which could cause confusion despite their different input parameters.
All tools follow a consistent verb_noun naming pattern using snake_case, such as add_liquidity, check_token_allowance, and get_account_info. The naming is predictable and readable throughout the set, with no deviations in style or convention.
With 21 tools, the count is borderline high for a DEX server, potentially overwhelming for agents. While the tools cover various aspects like liquidity, trading, balances, and ETFs, some consolidation might improve usability without losing functionality.
The tool set provides comprehensive coverage for a DEX domain, including liquidity management (add/remove), trading (swap, validate, price estimates), account/balance queries, ETF operations (buy/sell/price/balance), and chain/token information. No obvious gaps are present, supporting full workflows from approval to execution.