Dexter
Dexter
Docs

x402 Tools

OpenDexter exposes five tools that cover the full lifecycle from search to settlement:

ToolPurpose
x402_searchSearch the marketplace for paid resources by keyword, category, or chain
x402_checkPreview pricing and requirements before committing to payment
x402_walletCreate or inspect wallet/session funding addresses
x402_fetchPay for and receive the response in one call
x402_payExplicit payment verb when the client wants to separate pay from fetch

The Flow

flowchart LR
    Search["x402_search"] --> Check["x402_check"]
    Check --> Wallet["x402_wallet"]
    Wallet --> Fetch["x402_fetch"]
    Fetch --> Data["Response data"]
  1. Discoverx402_search turns the marketplace into an agent-readable interface
  2. Evaluatex402_check shows pricing, chain, and requirements before you commit
  3. Fund and executex402_wallet gets your addresses, then x402_fetch handles payment and retrieval

Hosted Session Model

In the hosted flow at open.dexter.cash/mcp:

  • x402_wallet creates a session with two funding addresses (one Solana, one shared EVM)
  • Fund either address with USDC
  • x402_fetch auto-selects the best-funded chain the endpoint accepts
  • Sessions persist for 30 days
AttributeValue
AuthNone
WalletsEphemeral session (Solana + EVM)
Multi-chainAuto-selects from funded chains
Session lifetime30 days
Best forChatGPT, Claude, hosted agents

Local npm Package

With @dexterai/opendexter installed locally:

  • Signer lives at ~/.dexterai-mcp/wallet.json
  • Fund it directly — wallet persists indefinitely
  • Same five tools, same flow
AttributeValue
AuthNone
WalletPersistent local signer
ChainsSolana (local key)
Session lifetimeIndefinite
Best forCursor, Codex, CLI agents

Authenticated Dexter MCP

The authenticated MCP at mcp.dexter.cash/mcp can also expose the x402 tool surface. Set TOKEN_AI_MCP_PROFILE=opendexter to limit it to the focused x402 flow instead of the broader Dexter tool catalog.

On this page