<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Hazy</title>
    <description>The latest articles on DEV Community by Hazy (@hazy2go).</description>
    <link>https://dev.to/hazy2go</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3805720%2F7f95746b-3570-4eae-bf63-6c5dcd4f3a45.png</url>
      <title>DEV Community: Hazy</title>
      <link>https://dev.to/hazy2go</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hazy2go"/>
    <language>en</language>
    <item>
      <title>Your AI Coding Agent Can Now Query SODAX Live Data — Here's How</title>
      <dc:creator>Hazy</dc:creator>
      <pubDate>Wed, 04 Mar 2026 12:12:53 +0000</pubDate>
      <link>https://dev.to/hazy2go/your-ai-coding-agent-can-now-query-sodax-live-data-heres-how-3com</link>
      <guid>https://dev.to/hazy2go/your-ai-coding-agent-can-now-query-sodax-live-data-heres-how-3com</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy2b5cqnxn6tkmlaxc9r8.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy2b5cqnxn6tkmlaxc9r8.webp" alt=" " width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So I've been playing around with the &lt;a href="https://sodax.com" rel="noopener noreferrer"&gt;SODAX&lt;/a&gt; Builder MCP server this week, and honestly it's one of those things that seems small until you actually use it.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://sodax.com" rel="noopener noreferrer"&gt;SODAX&lt;/a&gt; published a &lt;a href="https://builders.sodax.com/mcp" rel="noopener noreferrer"&gt;Builder MCP endpoint&lt;/a&gt; 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.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick primer on MCP if you're not familiar
&lt;/h2&gt;

&lt;p&gt;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 &lt;a href="https://sodax.com" rel="noopener noreferrer"&gt;SODAX&lt;/a&gt; builder endpoint answers.&lt;/p&gt;

&lt;p&gt;Add &lt;code&gt;https://builders.sodax.com/mcp&lt;/code&gt; to your agent config and you're done.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's actually in the builder MCP?
&lt;/h2&gt;

&lt;p&gt;Here's what you get:&lt;/p&gt;

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




&lt;h2&gt;
  
  
  Why it's actually useful (not just cool)
&lt;/h2&gt;

&lt;p&gt;Here's the thing about building with &lt;a href="https://sodax.com" rel="noopener noreferrer"&gt;SODAX&lt;/a&gt;: it's an &lt;a href="https://sodax.com/concepts/execution-coordination" rel="noopener noreferrer"&gt;execution coordination&lt;/a&gt; system spanning 17 networks. The &lt;a href="https://sodax.com/system/solver" rel="noopener noreferrer"&gt;Solver&lt;/a&gt; picks execution paths. The &lt;a href="https://sodax.com/system/coordinator" rel="noopener noreferrer"&gt;Coordinator&lt;/a&gt; monitors the plan. The &lt;a href="https://sodax.com/system/liquidity" rel="noopener noreferrer"&gt;Liquidity&lt;/a&gt; layer treats assets as one unified pool rather than a bunch of siloed buckets. And &lt;a href="https://sodax.com/system/sodavariants" rel="noopener noreferrer"&gt;sodaVariants&lt;/a&gt; extend assets into networks where they don't natively exist.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://sodax.com/partners/sodax-sdk" rel="noopener noreferrer"&gt;&lt;code&gt;@sodax/sdk&lt;/code&gt;&lt;/a&gt; handles &lt;a href="https://sodax.com/swap" rel="noopener noreferrer"&gt;swaps&lt;/a&gt;, &lt;a href="https://sodax.com/loans" rel="noopener noreferrer"&gt;lend/borrow&lt;/a&gt;, &lt;a href="https://sodax.com/system/generalized-messaging-protocol-gmp" rel="noopener noreferrer"&gt;bridging&lt;/a&gt;, staking, and the &lt;a href="https://sodax.com/migrate" rel="noopener noreferrer"&gt;ICX-to-SODA migration&lt;/a&gt; flow. The wallet connection layer (&lt;code&gt;@sodax/wallet-sdk-core&lt;/code&gt; and &lt;code&gt;@sodax/wallet-sdk-react&lt;/code&gt;) covers EVM, SVM, and non-EVM environments. MCP connects it all to your agent at runtime.&lt;/p&gt;

&lt;p&gt;Concrete situations where this saves time:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Integration work.&lt;/strong&gt; Ask your agent to fetch &lt;a href="https://sodax.com/swap" rel="noopener noreferrer"&gt;supported swap tokens&lt;/a&gt; for a specific network before touching any code. No context switching.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Debugging.&lt;/strong&gt; Drop a transaction hash and ask your agent to check &lt;a href="https://sodax.com/concepts/execution" rel="noopener noreferrer"&gt;execution&lt;/a&gt; status. No leaving the editor.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Writing docs or content.&lt;/strong&gt; Pull a canonical definition from the &lt;a href="https://sodax.com/glossary" rel="noopener noreferrer"&gt;SODAX glossary&lt;/a&gt; or grab recent &lt;a href="https://sodax.com/news" rel="noopener noreferrer"&gt;news article&lt;/a&gt; URLs without hunting them down manually.&lt;/p&gt;




&lt;h2&gt;
  
  
  A bit of context on the protocol itself
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://sodax.com" rel="noopener noreferrer"&gt;SODAX&lt;/a&gt; isn't a bridge and it's not a messaging standard. It's an &lt;a href="https://sodax.com/concepts/execution-coordination" rel="noopener noreferrer"&gt;execution coordination&lt;/a&gt; layer. The difference matters because bridges move assets; SODAX coordinates outcomes, which means it handles &lt;a href="https://sodax.com/concepts/liquidity-fragmentation" rel="noopener noreferrer"&gt;liquidity fragmentation&lt;/a&gt;, &lt;a href="https://sodax.com/concepts/asynchronous-reality" rel="noopener noreferrer"&gt;asynchronous execution&lt;/a&gt;, &lt;a href="https://sodax.com/concepts/recoverability" rel="noopener noreferrer"&gt;recoverability&lt;/a&gt;, and &lt;a href="https://sodax.com/concepts/state-transitions" rel="noopener noreferrer"&gt;state transitions&lt;/a&gt; in ways that raw bridging doesn't.&lt;/p&gt;

&lt;p&gt;14 partners are already live on it, including &lt;a href="https://sodax.com/partners/hana" rel="noopener noreferrer"&gt;Hana Wallet&lt;/a&gt;, &lt;a href="https://sodax.com/news/sodax-partners-with-houdini-swap" rel="noopener noreferrer"&gt;Houdini Swap&lt;/a&gt;, &lt;a href="https://sodax.com/partners/amped-finance" rel="noopener noreferrer"&gt;Amped Finance&lt;/a&gt;, and &lt;a href="https://sodax.com/news/sodax-swap-live-defi-without-borders" rel="noopener noreferrer"&gt;Balanced&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://sodax.com/community/soda-token" rel="noopener noreferrer"&gt;SODA token&lt;/a&gt; handles governance, max supply fixed at 1.5B. If you're coming from ICX, &lt;a href="https://sodax.com/migrate" rel="noopener noreferrer"&gt;migration is 1:1&lt;/a&gt;. Protocol fees go toward the DAO, staking rewards, burns, and &lt;a href="https://sodax.com/system/liquidity" rel="noopener noreferrer"&gt;POL&lt;/a&gt; growth.&lt;/p&gt;

&lt;p&gt;Worth bookmarking: there's a dedicated &lt;a href="https://sodax.com/concepts/ai-agents" rel="noopener noreferrer"&gt;AI Agents concept page&lt;/a&gt; that's directly relevant if you're thinking about agentic DeFi workflows. Which is exactly what the MCP server opens up.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's shipped recently
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://sodax.com/news/sodax-live-on-kaia" rel="noopener noreferrer"&gt;SODAX is live on Kaia&lt;/a&gt; — &lt;a href="https://sodax.com/swap" rel="noopener noreferrer"&gt;swap&lt;/a&gt; access extended to the Kaia community, 17 networks total now.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://sodax.com/news/sodax-faster-and-more-resilient-with-solver-v3" rel="noopener noreferrer"&gt;Solver v3 dropped in February&lt;/a&gt; — rebuilt for more resilient &lt;a href="https://sodax.com/concepts/execution-coordination" rel="noopener noreferrer"&gt;cross-network execution&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://sodax.com/news/march-2026-unifying-our-liquidity" rel="noopener noreferrer"&gt;March update&lt;/a&gt; is about unifying &lt;a href="https://sodax.com/system/liquidity" rel="noopener noreferrer"&gt;cross-network liquidity&lt;/a&gt; and opening up &lt;a href="https://sodax.com/save" rel="noopener noreferrer"&gt;SODAX Save&lt;/a&gt; for yield.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://sodax.com/news/soda-migration-enters-its-next-phase-with-cex-support" rel="noopener noreferrer"&gt;CEX migration support&lt;/a&gt; is live, so ICX-to-SODA conversion is happening automatically on supported platforms now.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;

&lt;p&gt;Builder MCP endpoint: &lt;code&gt;https://builders.sodax.com/mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Add it to your agent, start querying. For &lt;a href="https://sodax.com/partners/sodax-sdk" rel="noopener noreferrer"&gt;SDK&lt;/a&gt; integration the best starting point is &lt;a href="https://docs.sodax.com" rel="noopener noreferrer"&gt;docs.sodax.com&lt;/a&gt; or the &lt;a href="https://sodax.com/news/integrate-with-the-sodax-sdk" rel="noopener noreferrer"&gt;integration guide&lt;/a&gt; on the SODAX site.&lt;/p&gt;

&lt;p&gt;If you have questions, &lt;a href="https://sodax.com/discord" rel="noopener noreferrer"&gt;Discord&lt;/a&gt; is the place.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>blockchain</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
