<?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: Phani Avagaddi</title>
    <description>The latest articles on DEV Community by Phani Avagaddi (@phani_avagaddi).</description>
    <link>https://dev.to/phani_avagaddi</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%2F3785294%2F946778bc-e66b-4a82-91da-338d5aa13237.jpg</url>
      <title>DEV Community: Phani Avagaddi</title>
      <link>https://dev.to/phani_avagaddi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/phani_avagaddi"/>
    <language>en</language>
    <item>
      <title>AI Engineering free workshop every Saturday at 9am IST!!!</title>
      <dc:creator>Phani Avagaddi</dc:creator>
      <pubDate>Sat, 28 Feb 2026 02:31:27 +0000</pubDate>
      <link>https://dev.to/phani_avagaddi/ai-engineering-free-workshop-every-saturday-at-9am-ist-1lpi</link>
      <guid>https://dev.to/phani_avagaddi/ai-engineering-free-workshop-every-saturday-at-9am-ist-1lpi</guid>
      <description>&lt;p&gt;Hi All, Lets talk about the future of AI - Upcoming advancements and how we can prepare for these in my Engineering workshop this Saturday. This is a FREE Engineering workshop happens every Saturday, , if not joined already just register here with the coupon code - Talk to you in the Workshop tomorrow at 9AM IST - &lt;a href="https://learn.aipathfinderhub.com/l/0c555410f7" rel="noopener noreferrer"&gt;https://learn.aipathfinderhub.com/l/0c555410f7&lt;/a&gt;     - COUPON Code - WRKSHP01&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to add 8 AI tools to your agent in one API call (MCP format)</title>
      <dc:creator>Phani Avagaddi</dc:creator>
      <pubDate>Fri, 27 Feb 2026 07:05:32 +0000</pubDate>
      <link>https://dev.to/phani_avagaddi/how-to-add-8-ai-tools-to-your-agent-in-one-api-call-mcp-format-3788</link>
      <guid>https://dev.to/phani_avagaddi/how-to-add-8-ai-tools-to-your-agent-in-one-api-call-mcp-format-3788</guid>
      <description>&lt;p&gt;Building AI agents in 2025 means constantly assembling a patchwork of tools. Resume parsers here, content generators there, text analysis somewhere else.&lt;br&gt;
I got tired of it and built the AI Tools MCP Bundle — 8 tools in one endpoint, in MCP format so it plugs directly into Claude and Cursor without any glue code.&lt;/p&gt;

&lt;p&gt;Here's a quick demo — resume parsing in Python:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import requests

response = requests.post(
    "https://ai-tools-mcp-bundle.p.rapidapi.com/parse-resume",
    json={"resume_text": "Jane Smith, Senior ML Engineer, 7 years..."},
    headers={
        "x-rapidapi-key": "YOUR_KEY",
        "x-rapidapi-host": "ai-tools-mcp-bundle.p.rapidapi.com"
    }
)
print(response.json())
# → { "name": "Jane Smith", "role": "Senior ML Engineer", "years_exp": 7, ... }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or content generation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;response = requests.post(
    "https://ai-tools-mcp-bundle.p.rapidapi.com/generate-content",
    json={"type": "blog", "topic": "Why MCP is the future of AI tooling", "tone": "professional"},
    headers={...}
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Why I chose MCP format: The Model Context Protocol lets AI assistants like Claude call your tools natively in their reasoning loop. No prompt engineering to get output in the right shape — the tool schema does that for you.&lt;br&gt;
All 8 tools, one subscription:&lt;br&gt;
Resume parsing, job matching, content generation, sentiment analysis, keyword extraction, readability scoring, AI content detection, and prompt rephrasing.&lt;br&gt;
Free tier available (50 req/mo). Paid from $14.99.&lt;br&gt;
👉 &lt;a href="https://rapidapi.com/phaniavagaddi/api/ai-tools-mcp-bundle-resume-content-and-text-analysis" rel="noopener noreferrer"&gt;https://rapidapi.com/phaniavagaddi/api/ai-tools-mcp-bundle-resume-content-and-text-analysis&lt;/a&gt;&lt;br&gt;
What are you building with MCP? Let me know in the comments.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>api</category>
      <category>mcp</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
