<?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: Kenneth Doster</title>
    <description>The latest articles on DEV Community by Kenneth Doster (@kenneth_doster_5d86c3cf4f).</description>
    <link>https://dev.to/kenneth_doster_5d86c3cf4f</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%2F3669813%2Ff3188eb6-55b3-4c4b-8491-7fbc4406823f.png</url>
      <title>DEV Community: Kenneth Doster</title>
      <link>https://dev.to/kenneth_doster_5d86c3cf4f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kenneth_doster_5d86c3cf4f"/>
    <language>en</language>
    <item>
      <title>I Built 3 MCP Servers for AI Agents — Here's How They Work</title>
      <dc:creator>Kenneth Doster</dc:creator>
      <pubDate>Sun, 28 Jun 2026 06:16:10 +0000</pubDate>
      <link>https://dev.to/kenneth_doster_5d86c3cf4f/i-built-3-mcp-servers-for-ai-agents-heres-how-they-work-5dbj</link>
      <guid>https://dev.to/kenneth_doster_5d86c3cf4f/i-built-3-mcp-servers-for-ai-agents-heres-how-they-work-5dbj</guid>
      <description>&lt;h2&gt;
  
  
  What are MCP Servers?
&lt;/h2&gt;

&lt;p&gt;The Model Context Protocol (MCP) is an open standard that lets AI agents use external tools through a unified interface. Think of it as USB-C for AI — one protocol connects any AI client (Claude Desktop, Cursor, VS Code with Cline) to any tool or data source.&lt;/p&gt;

&lt;p&gt;I built three production-ready MCP servers and published them to PyPI and GitHub. Here's what they do and how to use them.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Web Search MCP Server
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;uvx crewai-web-search-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Two tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;web_search(query)&lt;/strong&gt; — Searches Google/SerpAPI and returns ranked results with snippets&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;extract_content(url)&lt;/strong&gt; — Fetches and extracts readable content from any web page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use cases: Ask your AI about current events, research competitors, pull documentation, verify facts in real time.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"web-search"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"crewai-web-search-mcp"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  2. Code Review Automation MCP
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;uvx code-review-automation&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Three tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;review_code(diff)&lt;/strong&gt; — Analyzes code changes for bugs, security issues, anti-patterns, style violations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;check_quality(path)&lt;/strong&gt; — Runs static analysis and returns a quality report&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;analyze_pr(diff)&lt;/strong&gt; — Produces a structured review: what changed, what's risky, suggestions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use cases: Paste a PR diff and get an instant review. Catch issues before they reach production.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Document Intelligence Server
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;uvx document-intelligence-server&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Three tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;extract_document(path)&lt;/strong&gt; — OCR and text extraction from PDFs, scanned docs, images&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;classify_document(path)&lt;/strong&gt; — Identifies document type (invoice, report, contract, article)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;summarize_document(path)&lt;/strong&gt; — Generates a structured summary from extracted content&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use cases: Process uploaded PDFs, extract data from scanned forms, summarize long reports.&lt;/p&gt;




&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;p&gt;All three servers use a shared credit system:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tier&lt;/th&gt;
&lt;th&gt;Price&lt;/th&gt;
&lt;th&gt;Credits&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Free&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;50 calls/day&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Starter&lt;/td&gt;
&lt;td&gt;$20&lt;/td&gt;
&lt;td&gt;2,000 calls&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pro&lt;/td&gt;
&lt;td&gt;$100&lt;/td&gt;
&lt;td&gt;12,000 calls&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Buy credits once, use them across any server. Credits never expire.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How it works:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Install with &lt;code&gt;uvx crewai-web-search-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Use 50 free calls per day — no key needed&lt;/li&gt;
&lt;li&gt;For unlimited use: buy credits on Gumroad → set &lt;code&gt;MCP_LICENSE_KEY&lt;/code&gt; → all limits removed&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Servers&lt;/strong&gt;: Python + &lt;a href="https://github.com/jlowin/fastmcp" rel="noopener noreferrer"&gt;FastMCP&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Billing&lt;/strong&gt;: FastAPI + PostgreSQL (self-hosted, open source)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auth&lt;/strong&gt;: Gumroad license key verification&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Distribution&lt;/strong&gt;: PyPI, GitHub, HuggingFace, Gumroad, MCP registries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The billing backend is open source too: &lt;a href="https://github.com/KennyWayn3/mcp-billing-api" rel="noopener noreferrer"&gt;github.com/KennyWayn3/mcp-billing-api&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Showcase &amp;amp; docs: &lt;a href="https://github.com/KennyWayn3/crewai-mcp-servers" rel="noopener noreferrer"&gt;github.com/KennyWayn3/crewai-mcp-servers&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Landing page: &lt;a href="https://KennyWayn3.github.io/crewai-mcp-servers/" rel="noopener noreferrer"&gt;KennyWayn3.github.io/crewai-mcp-servers&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;PyPI: &lt;code&gt;pip install crewai-web-search-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Gumroad: &lt;a href="https://stinkmaster37.gumroad.com" rel="noopener noreferrer"&gt;stinkmaster37.gumroad.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Billing backend: &lt;a href="https://github.com/KennyWayn3/mcp-billing-api" rel="noopener noreferrer"&gt;github.com/KennyWayn3/mcp-billing-api&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;What MCP servers would you like to see built next? I'm curious what the community actually needs.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>crewai</category>
      <category>python</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
