<?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: Opportunity Biz</title>
    <description>The latest articles on DEV Community by Opportunity Biz (@opptybiz).</description>
    <link>https://dev.to/opptybiz</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%2F3955989%2F964359bc-d78a-4daa-9a7a-55986a20cd5b.png</url>
      <title>DEV Community: Opportunity Biz</title>
      <link>https://dev.to/opptybiz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/opptybiz"/>
    <language>en</language>
    <item>
      <title>Show DEV: I built a code generator that turns a plain-English tool description into a working MCP server</title>
      <dc:creator>Opportunity Biz</dc:creator>
      <pubDate>Tue, 07 Jul 2026 11:33:40 +0000</pubDate>
      <link>https://dev.to/opptybiz/show-dev-i-built-a-code-generator-that-turns-a-plain-english-tool-description-into-a-working-mcp-54g2</link>
      <guid>https://dev.to/opptybiz/show-dev-i-built-a-code-generator-that-turns-a-plain-english-tool-description-into-a-working-mcp-54g2</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Every time I build an MCP server I write the same scaffolding: JSON-RPC schema, Pydantic models, transport wiring, pyproject.toml. None of that is the actual tool — it's just the protocol layer you have to get through before writing any logic.&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;skill-to-mcp&lt;/strong&gt; reads a &lt;code&gt;SKILL.md&lt;/code&gt; file — a plain-English description of what your tool does, its inputs and outputs — and scaffolds a complete MCP server from it.&lt;/p&gt;

&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcr3ixftuhha4e1pbwnph.png" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcr3ixftuhha4e1pbwnph.png" alt=" " width="799" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Example &lt;code&gt;SKILL.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# invoice-parser&lt;/span&gt;

Extracts structured fields from a PDF invoice.

&lt;span class="gu"&gt;## Input&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; file_url: string — URL of the PDF to parse

&lt;span class="gu"&gt;## Output&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; vendor: string
&lt;span class="p"&gt;-&lt;/span&gt; amount: float
&lt;span class="p"&gt;-&lt;/span&gt; date: string (ISO 8601)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Running &lt;code&gt;skillmd-to-mcp generate&lt;/code&gt; on that produces:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JSON-RPC schema (&lt;code&gt;tool_name&lt;/code&gt;, &lt;code&gt;description&lt;/code&gt;, &lt;code&gt;inputSchema&lt;/code&gt;, &lt;code&gt;outputSchema&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Pydantic v2 models for type-safe I/O&lt;/li&gt;
&lt;li&gt;MCP server boilerplate (stdio or HTTP SSE transport)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;pyproject.toml&lt;/code&gt; ready to &lt;code&gt;pip install&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Auto-generated README&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why SKILL.md
&lt;/h2&gt;

&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fodsf3deju5na6z7m8cm7.png" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fodsf3deju5na6z7m8cm7.png" alt=" " width="799" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A plain-English description is more readable, versionable, and composable than a hand-written JSON-RPC schema. If you can describe what your tool does in a few sentences, you have enough to generate the server.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install &amp;amp; run
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;skillmd-to-mcp
skillmd-to-mcp generate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or use the &lt;a href="https://apify.com/opportunity-biz/skill-to-mcp" rel="noopener noreferrer"&gt;Apify Actor&lt;/a&gt; if you want to run it without a local setup — takes the same inputs via a web form.&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback welcome
&lt;/h2&gt;

&lt;p&gt;Curious whether anyone else has been hitting the boilerplate problem and how you've been handling it. Happy to hear what edge cases the generator misses.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
