Cardexscan MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| get_trending_tokensC | Get trending tokens on Cardano DEXes ranked by trading activity for the given timeframe. |
| search_tokensB | Search for Cardano native tokens by ticker symbol or name. Returns token details including policyId, asset name, decimals, price, and verification status. |
| get_ada_priceB | Get the current price of ADA (Cardano's native cryptocurrency) in USD. |
| get_token_poolsA | Get available liquidity pools for a token pair across all Cardano DEXes. Returns pool data including liquidity, DEX names, and pricing for finding the best swap routes. |
| get_rug_scoreA | Get the rug-pull risk score for a Cardano native token. Returns a probability score indicating scam risk. Lower scores mean safer tokens. |
| get_wallet_tokensB | Get token details for a list of policy IDs. Returns token metadata including price, decimals, and verification status. Useful for portfolio valuation. |
| get_pending_ordersB | Get pending (open) swap orders for a Cardano wallet address. Shows orders waiting to be filled on various DEXes. |
| get_wallet_ordersA | Get all swap orders (open and completed) for a Cardano wallet address. Returns order history including action type, tokens, amounts, DEX, and status. |
| get_otc_offersB | Get OTC (Over-The-Counter) marketplace offers on Cardano. Returns peer-to-peer trading offers with token details, prices, and status. |
| get_otc_offer_by_idC | Get details of a specific OTC offer by its ID. |
| create_otc_offerB | Create a new peer-to-peer OTC trading offer on the Cardexscan marketplace. Returns an unsigned transaction CBOR and offer ID. |
| fill_otc_offerA | Accept and fill an existing OTC offer. Returns an unsigned transaction CBOR to be signed by the buyer's wallet. |
| get_my_otc_offersB | Get all OTC offers created by a specific wallet address. |
| cancel_otc_offerB | Cancel an existing OTC offer. Returns an unsigned transaction CBOR to be signed by the seller's wallet. |
| get_global_tradesB | Get recent global trade data across all Cardano DEXes. Returns recent swaps with token names, amounts, prices, DEX names, and timestamps. |
| submit_swapB | Log a swap transaction submission to the Cardexscan backend for analytics and tracking. |
| get_historical_tradesB | Get all historical trades for a specific Cardano wallet address. |
| get_token_tradesC | Get all token trades across Cardano DEXes for a given timeframe. Returns trade data with configurable limit and sort order. |
| swap_aggregateB | Get aggregated swap data for a token pair across Cardano DEXes. Returns optimal split routes and estimated output amount. |
| swap_build_cborB | Build an unsigned transaction CBOR for an aggregated swap. Returns the transaction CBOR that needs to be signed by the user's wallet. |
| create_dca_orderA | Create a Dollar Cost Averaging (DCA) order for automated recurring swaps at specified intervals. Returns an unsigned transaction CBOR to be signed by the wallet. |
| cancel_dca_orderA | Cancel an active DCA order. Remaining assets are returned to the owner. Returns an unsigned transaction CBOR to be signed by the wallet. |
| get_dca_ordersA | Get all DCA orders for a specific Cardano wallet address. Returns order details including status, amounts, and execution progress. |
| get_all_dca_ordersB | Get all active DCA orders system-wide across all wallets. Returns all currently active DCA orders on the platform. |
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 24 tools
Most tools target distinct resources/actions, but the trade-retrieval cluster (get_global_trades, get_token_trades, get_historical_trades, get_wallet_orders) has overlapping scopes that could cause misselection, and get_pending_orders vs get_wallet_orders requires careful reading to distinguish.
Nearly all tools follow a consistent snake_case verb_noun pattern (get_*, create_*, cancel_*, fill_*). swap_aggregate and swap_build_cbor break the pattern with noun-first phrasing, but overall the convention is predictable.
24 tools is on the heavy side, spanning tokens, OTC, DCA, swaps, and analytics. Each tool is defensible given the broad domain, but the count sits at the borderline of feeling bloated for a single server.
Strong lifecycle coverage: OTC (create/fill/get/cancel), DCA (create/cancel/get), swaps (aggregate/build/submit), plus pricing, pools, and trade history. Minor gaps like wallet balance or swap-route execution confirmation exist but core workflows are covered.