<?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: Jabulani Ndlovu</title>
    <description>The latest articles on DEV Community by Jabulani Ndlovu (@shotza247).</description>
    <link>https://dev.to/shotza247</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3977865%2F956a15f4-5566-423a-b26b-8fc23457d43a.jpeg</url>
      <title>DEV Community: Jabulani Ndlovu</title>
      <link>https://dev.to/shotza247</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shotza247"/>
    <language>en</language>
    <item>
      <title>I wired an MCP server to a watsonx Orchestrate agent — and it changed how I think about agentic AI</title>
      <dc:creator>Jabulani Ndlovu</dc:creator>
      <pubDate>Sun, 21 Jun 2026 13:49:28 +0000</pubDate>
      <link>https://dev.to/shotza247/i-wired-an-mcp-server-to-a-watsonx-orchestrate-agent-and-it-changed-how-i-think-about-agentic-ai-4aeh</link>
      <guid>https://dev.to/shotza247/i-wired-an-mcp-server-to-a-watsonx-orchestrate-agent-and-it-changed-how-i-think-about-agentic-ai-4aeh</guid>
      <description>&lt;p&gt;&lt;strong&gt;IBM watsonx Orchestrate · MCP · Beginner · 4 min read&lt;/strong&gt;&lt;/p&gt;




&lt;blockquote&gt;
&lt;p&gt;What if your agent didn't need to know how any of its tools work? That's the idea behind MCP — and it's simpler than it sounds.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I'm just getting started with the &lt;strong&gt;IBM watsonx Orchestrate ADK&lt;/strong&gt; (Agent Development Kit). This week I built a beginner-friendly weather agent that uses an MCP server to serve its tools. Here's what I learned.&lt;/p&gt;




&lt;h2&gt;
  
  
  The concept: M + N, not M × N
&lt;/h2&gt;

&lt;p&gt;The traditional way to build agents is to wire each tool directly into each agent. That gets messy fast.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The old way:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Agent → Tool 1
Agent → Tool 2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;With MCP:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Agent → MCP Server → Tool 1
                   → Tool 2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The agent just talks to one MCP server. The server handles everything behind it. Add more tools to the server — the agent automatically gets them. That's the shift.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;A simple weather agent with two capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get the &lt;strong&gt;current weather&lt;/strong&gt; for a city&lt;/li&gt;
&lt;li&gt;Get a &lt;strong&gt;multi-day forecast&lt;/strong&gt; for a city&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The MCP server exposes these as tools. The watsonx Orchestrate agent calls them through the toolkit — it never touches the weather API directly.&lt;/p&gt;

&lt;p&gt;Here's the full flow:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User prompt
    ↓
watsonx Orchestrate Agent
    ↓
MCP Toolkit: weather_mcp
    ↓
MCP Server
    ↓
Open-Meteo Weather API (free, no key needed)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  How the agent is defined
&lt;/h2&gt;

&lt;p&gt;The agent lives in a single YAML file. No code. Just intent:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Weather_Reporter_Agent&lt;/span&gt;
&lt;span class="na"&gt;instructions&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;|&lt;/span&gt;
  &lt;span class="s"&gt;You are a helpful weather reporting agent.&lt;/span&gt;
  &lt;span class="s"&gt;Use get_current_weather for current conditions.&lt;/span&gt;
  &lt;span class="s"&gt;Use get_weather_forecast for multi-day outlooks.&lt;/span&gt;
  &lt;span class="s"&gt;Always ask for a city if the user doesn't provide one.&lt;/span&gt;
&lt;span class="na"&gt;tools&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;weather_mcp:get_current_weather"&lt;/span&gt;
  &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;weather_mcp:get_weather_forecast"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. The agent knows what tools exist, when to use them, and how to respond. The MCP server handles the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  Talking to the agent
&lt;/h2&gt;

&lt;p&gt;Once imported into watsonx Orchestrate, the agent is available in the Agent Builder UI. No extra setup.&lt;/p&gt;

&lt;p&gt;You can ask it things like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"What's the weather in Johannesburg right now?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Give me a 3-day forecast for Cape Town."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Will it rain in Durban tomorrow?"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The agent picks the right tool, calls the MCP server, and responds in plain language. The whole thing just works.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I think this matters — even at beginner level
&lt;/h2&gt;

&lt;p&gt;The part that clicked for me: &lt;strong&gt;the agent and the tools are completely separate&lt;/strong&gt;. I could swap the weather API tomorrow and the agent definition wouldn't change at all. I could add a new tool to the MCP server and any agent using that toolkit would pick it up automatically.&lt;/p&gt;

&lt;p&gt;For a beginner project, that's a surprisingly powerful pattern to start with.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;This was just the foundation. Next I want to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Try connecting multiple agents to the same toolkit&lt;/li&gt;
&lt;li&gt;Explore how this pattern scales in a real enterprise use case&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're exploring watsonx Orchestrate or MCP-based agents, I'd love to hear what you're building.&lt;/p&gt;




&lt;p&gt;&lt;code&gt;#watsonx&lt;/code&gt; &lt;code&gt;#MCP&lt;/code&gt; &lt;code&gt;#FastAPI&lt;/code&gt; &lt;code&gt;#AgenticAI&lt;/code&gt; &lt;code&gt;#ibm&lt;/code&gt; &lt;code&gt;#beginners&lt;/code&gt; &lt;code&gt;#python&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>beginners</category>
      <category>agentaichallenge</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
