Dexter MCP — Authenticated Dexter Platform
The authenticated Dexter MCP gives you full access to the Dexter platform through the user's Dexter account. This includes the x402 marketplace tools plus 50+ additional Dexter-native tools for trading, analytics, media, games, and more.
Payment is automatic — the user's managed Dexter wallet handles all x402 settlements without any manual funding step.
x402 Marketplace Tools
These five tools work the same as OpenDexter but with automatic payment through the user's Dexter wallet. No session funding needed.
x402_search — Find paid APIs
Search the x402 marketplace across Solana and EVM chains. Pass the user's job as the query. Use maxPriceUsdc or minPriceUsdc for a hard API invocation-price bound, paidOnly: true for known positive primary USDC prices, and sortBy for relevance, price_asc, or price_desc. Confirm typed controls in appliedConstraints and appliedOrdering. Price order applies inside each relevance tier; strong results remain ahead of related results. The selected endpoint still needs x402_check because alternate payment options can quote a different amount.
x402_check — Preview pricing
Probe an endpoint to see payment requirements per chain without paying. Shows pricing options for each supported chain. Use before x402_fetch to show the user what it'll cost.
x402_fetch — Call and pay automatically
Call any x402 endpoint with automatic payment from the user's Dexter wallet on the appropriate chain. No manual funding — it just works. The user gets the API response directly along with a payment receipt.
x402_wallet — View wallet
Shows the authenticated wallet address and balances. The Dexter managed wallet is pre-funded through the user's account.
Dexter-Native Tools
Beyond the x402 marketplace, the authenticated MCP provides direct access to Dexter's platform tools. These are organized by category:
Solana Trading
- solana_resolve_token: Look up any Solana token by name, symbol, or mint address
- solana_list_balances: Show the user's Solana token balances
- solana_send: Send SOL or SPL tokens to another wallet
- solana_swap_preview: Get a Jupiter DEX quote for a token swap
- solana_swap_execute: Execute a swap through Jupiter
When the user wants to trade, the typical flow is: resolve the token → preview the swap → confirm with the user → execute.
Market Data
- markets_fetch_ohlcv: Get OHLCV candlestick data for any token from Birdeye
On-Chain Analytics
- onchain_activity_overview: Real-time on-chain activity feed for Solana
- onchain_entity_insight: Deep analysis of a specific token, wallet, or transaction
Research & Social
- twitter_topic_analysis: Analyze Twitter conversation volume, sentiment, and engagement for a topic or cashtag
- search: Web search powered by Tavily
- fetch: Fetch and extract content from any URL
Hyperliquid Perps
- hyperliquid_markets: Browse available perpetual futures markets
- hyperliquid_perp_trade: Execute a perp trade
- hyperliquid_fund: Fund the Hyperliquid sub-account
- hyperliquid_bridge_deposit: Bridge USDC to Hyperliquid
Games
- Pokedexter: Wagered Pokemon battles (create challenges, accept battles, make moves)
- King of Dexter: Pay to become King, submit decrees
- Infinite Story: Append words to a collaborative on-chain story
Stream
- stream_public_shout: Broadcast a paid message to the Dexter stream
Bundles
- list_bundles, get_bundle, create_bundle, etc.: Create and manage curated collections of x402 resources
Workflow Patterns
"Swap 10 USDC for SOL"
solana_resolve_token for SOL and USDC (get mint addresses)
solana_swap_preview with the amounts
- Show the quote to the user (price, slippage, route)
- On confirmation,
solana_swap_execute
"What's trending on Solana?"
onchain_activity_overview for a real-time feed
- Or search for trending tools:
x402_search query "trending tokens"
"Generate a meme about Bitcoin"
meme_generator_job with the prompt
"Find me a paid API for sentiment analysis"
x402_search query "sentiment analysis"
x402_check on the best result
x402_fetch to call it
"What are my balances?"
solana_list_balances for token balances
x402_wallet for the x402 settlement wallet specifically
Key Differences from OpenDexter
| Aspect |
This (Authenticated) |
OpenDexter |
| Auth |
Dexter OAuth required |
No auth |
| Wallet |
Managed by Dexter, pre-funded |
Session wallet, persists 30 days, needs manual funding |
| Tools |
50+ (trading, analytics, media, games + x402) |
5 (x402 marketplace only) |
| Payment |
Automatic, zero friction |
Automatic after session funding |
| Best for |
Power users with Dexter accounts |
Anyone, quick marketplace access |
Tips
- The user is already authenticated. Don't ask them to log in or set up a wallet — it's handled.
- For x402 marketplace searches, quality scores and verification status help the user choose. Highlight verified endpoints.
- For swaps, always preview before executing. Show the user the quote and get confirmation.
- Sora video generation is expensive ($8/job) — mention the price before submitting.
- The marketplace search is fuzzy and supports typos. Search broadly.
1---2name: dexter-mcp3description: Use Dexter MCP for authenticated access to Dexter's full tool suite: x402 marketplace search and payments, Solana trading (Jupiter swaps, token resolution, balances, sends), on-chain analytics, Hyperliquid perps, media generation (Sora video, meme images), Twitter analysis, Pokedexter battles, stream shouts, and 50+ more tools. Trigger whenever the user wants to trade tokens, search paid APIs, generate media, analyze on-chain data, check Solana balances, do anything with Dexter, or access any x402 marketplace functionality through their Dexter account.4---56# Dexter MCP — Authenticated Dexter Platform78The authenticated Dexter MCP gives you full access to the Dexter platform through the user's Dexter account. This includes the x402 marketplace tools plus 50+ additional Dexter-native tools for trading, analytics, media, games, and more.910Payment is automatic — the user's managed Dexter wallet handles all x402 settlements without any manual funding step.1112## x402 Marketplace Tools1314These five tools work the same as OpenDexter but with automatic payment through the user's Dexter wallet. No session funding needed.1516### `x402_search` — Find paid APIs17Search the x402 marketplace across Solana and EVM chains. Pass the user's job as the query. Use `maxPriceUsdc` or `minPriceUsdc` for a hard API invocation-price bound, `paidOnly: true` for known positive primary USDC prices, and `sortBy` for `relevance`, `price_asc`, or `price_desc`. Confirm typed controls in `appliedConstraints` and `appliedOrdering`. Price order applies inside each relevance tier; strong results remain ahead of related results. The selected endpoint still needs `x402_check` because alternate payment options can quote a different amount.1819### `x402_check` — Preview pricing20Probe an endpoint to see payment requirements per chain without paying. Shows pricing options for each supported chain. Use before `x402_fetch` to show the user what it'll cost.2122### `x402_fetch` — Call and pay automatically23Call any x402 endpoint with automatic payment from the user's Dexter wallet on the appropriate chain. No manual funding — it just works. The user gets the API response directly along with a payment receipt.2425### `x402_wallet` — View wallet26Shows the authenticated wallet address and balances. The Dexter managed wallet is pre-funded through the user's account.2728## Dexter-Native Tools2930Beyond the x402 marketplace, the authenticated MCP provides direct access to Dexter's platform tools. These are organized by category:3132### Solana Trading33- **solana_resolve_token**: Look up any Solana token by name, symbol, or mint address34- **solana_list_balances**: Show the user's Solana token balances35- **solana_send**: Send SOL or SPL tokens to another wallet36- **solana_swap_preview**: Get a Jupiter DEX quote for a token swap37- **solana_swap_execute**: Execute a swap through Jupiter3839When the user wants to trade, the typical flow is: resolve the token → preview the swap → confirm with the user → execute.4041### Market Data42- **markets_fetch_ohlcv**: Get OHLCV candlestick data for any token from Birdeye4344### On-Chain Analytics45- **onchain_activity_overview**: Real-time on-chain activity feed for Solana46- **onchain_entity_insight**: Deep analysis of a specific token, wallet, or transaction4748### Research & Social49- **twitter_topic_analysis**: Analyze Twitter conversation volume, sentiment, and engagement for a topic or cashtag50- **search**: Web search powered by Tavily51- **fetch**: Fetch and extract content from any URL5253### Hyperliquid Perps54- **hyperliquid_markets**: Browse available perpetual futures markets55- **hyperliquid_perp_trade**: Execute a perp trade56- **hyperliquid_fund**: Fund the Hyperliquid sub-account57- **hyperliquid_bridge_deposit**: Bridge USDC to Hyperliquid5859### Games60- **Pokedexter**: Wagered Pokemon battles (create challenges, accept battles, make moves)61- **King of Dexter**: Pay to become King, submit decrees62- **Infinite Story**: Append words to a collaborative on-chain story6364### Stream65- **stream_public_shout**: Broadcast a paid message to the Dexter stream6667### Bundles68- **list_bundles**, **get_bundle**, **create_bundle**, etc.: Create and manage curated collections of x402 resources6970## Workflow Patterns7172### "Swap 10 USDC for SOL"731. `solana_resolve_token` for SOL and USDC (get mint addresses)742. `solana_swap_preview` with the amounts753. Show the quote to the user (price, slippage, route)764. On confirmation, `solana_swap_execute`7778### "What's trending on Solana?"791. `onchain_activity_overview` for a real-time feed802. Or search for trending tools: `x402_search` query "trending tokens"8182### "Generate a meme about Bitcoin"831. `meme_generator_job` with the prompt8485### "Find me a paid API for sentiment analysis"861. `x402_search` query "sentiment analysis"872. `x402_check` on the best result883. `x402_fetch` to call it8990### "What are my balances?"911. `solana_list_balances` for token balances922. `x402_wallet` for the x402 settlement wallet specifically9394## Key Differences from OpenDexter9596| Aspect | This (Authenticated) | OpenDexter |97|--------|---------------------|------------|98| Auth | Dexter OAuth required | No auth |99| Wallet | Managed by Dexter, pre-funded | Session wallet, persists 30 days, needs manual funding |100| Tools | 50+ (trading, analytics, media, games + x402) | 5 (x402 marketplace only) |101| Payment | Automatic, zero friction | Automatic after session funding |102| Best for | Power users with Dexter accounts | Anyone, quick marketplace access |103104## Tips105106- The user is already authenticated. Don't ask them to log in or set up a wallet — it's handled.107- For x402 marketplace searches, quality scores and verification status help the user choose. Highlight verified endpoints.108- For swaps, always preview before executing. Show the user the quote and get confirmation.109- Sora video generation is expensive ($8/job) — mention the price before submitting.110- The marketplace search is fuzzy and supports typos. Search broadly.