DEV Community

Hazy
Hazy

Posted on

Your AI Coding Agent Can Now Query SODAX Live Data — Here's How

So I've been playing around with the SODAX Builder MCP server this week, and honestly it's one of those things that seems small until you actually use it.

If you're building cross-network DeFi tooling and you're tired of tabbing out to check docs mid-session, this is for you.

SODAX published a Builder MCP endpoint that plugs directly into Claude, Cursor, Windsurf, or anything else that speaks MCP. Your agent gets live protocol data. Not cached. Not from training. Actual current state of the network.


Quick primer on MCP if you're not familiar

Model Context Protocol is an open standard for giving AI assistants access to external tools at runtime. Instead of your agent guessing at what tokens are supported or which networks are live, it just... asks. The SODAX builder endpoint answers.

Add https://builders.sodax.com/mcp to your agent config and you're done.


What's actually in the builder MCP?

Here's what you get:

  • sodax_get_supported_chains — pulls the full list of networks SODAX runs on. Right now that's 17: Ethereum, Arbitrum, Base, Optimism, Polygon, Avalanche, BNB Chain, Sonic (the hub), HyperEVM, LightLink, ICON, Solana, Stellar, Sui, Kaia, and a couple more.
  • sodax_get_swap_tokens — returns tokens available for swapping, filterable by network. Super useful before writing integration code.
  • sodax_get_money_market_assets — the 20 assets in the money market for lending and borrowing.
  • sodax_get_orderbook — live open intents sitting in the solver queue.
  • sodax_get_transaction — look up any transaction by hash. Genuinely handy mid-debug.
  • sodax_get_user_transactions — history for a given wallet.
  • sodax_get_user_position — a wallet's current borrow/lend position in the money market.
  • sodax_get_volumesolver volume data with filtering.
  • docs_searchDocumentation — searches SODAX SDK docs directly. This one I use constantly.

Why it's actually useful (not just cool)

Here's the thing about building with SODAX: it's an execution coordination system spanning 17 networks. The Solver picks execution paths. The Coordinator monitors the plan. The Liquidity layer treats assets as one unified pool rather than a bunch of siloed buckets. And sodaVariants extend assets into networks where they don't natively exist.

That's a lot of moving parts to keep track of. Having your agent pull current state instead of guessing cuts a real amount of friction.

The @sodax/sdk handles swaps, lend/borrow, bridging, staking, and the ICX-to-SODA migration flow. The wallet connection layer (@sodax/wallet-sdk-core and @sodax/wallet-sdk-react) covers EVM, SVM, and non-EVM environments. MCP connects it all to your agent at runtime.

Concrete situations where this saves time:

Integration work. Ask your agent to fetch supported swap tokens for a specific network before touching any code. No context switching.

Debugging. Drop a transaction hash and ask your agent to check execution status. No leaving the editor.

Writing docs or content. Pull a canonical definition from the SODAX glossary or grab recent news article URLs without hunting them down manually.


A bit of context on the protocol itself

SODAX isn't a bridge and it's not a messaging standard. It's an execution coordination layer. The difference matters because bridges move assets; SODAX coordinates outcomes, which means it handles liquidity fragmentation, asynchronous execution, recoverability, and state transitions in ways that raw bridging doesn't.

14 partners are already live on it, including Hana Wallet, Houdini Swap, Amped Finance, and Balanced.

The SODA token handles governance, max supply fixed at 1.5B. If you're coming from ICX, migration is 1:1. Protocol fees go toward the DAO, staking rewards, burns, and POL growth.

Worth bookmarking: there's a dedicated AI Agents concept page that's directly relevant if you're thinking about agentic DeFi workflows. Which is exactly what the MCP server opens up.


What's shipped recently


Getting started

Builder MCP endpoint: https://builders.sodax.com/mcp

Add it to your agent, start querying. For SDK integration the best starting point is docs.sodax.com or the integration guide on the SODAX site.

If you have questions, Discord is the place.

Top comments (0)