<?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: drutch</title>
    <description>The latest articles on DEV Community by drutch (@drutch).</description>
    <link>https://dev.to/drutch</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%2F3369645%2F628401fb-379b-4a18-ae59-59746ae97bef.png</url>
      <title>DEV Community: drutch</title>
      <link>https://dev.to/drutch</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/drutch"/>
    <language>en</language>
    <item>
      <title>Setting up Kiro for Godot(MCP server)</title>
      <dc:creator>drutch</dc:creator>
      <pubDate>Tue, 18 Nov 2025 20:04:44 +0000</pubDate>
      <link>https://dev.to/drutch/setting-up-kiro-for-godot-358c</link>
      <guid>https://dev.to/drutch/setting-up-kiro-for-godot-358c</guid>
      <description>&lt;h2&gt;
  
  
  Why do this?
&lt;/h2&gt;

&lt;p&gt;If you let Kiro read your local Godot docs via an MCP filesystem server, your assistant will:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Use the exact docs for the engine version you downloaded (no hallucinations).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Work offline and fast (no network latency).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Require minimal CPU/RAM on your machine (indexing is small or optional).&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This guide covers the MCP server portion, turning your downloaded HTML/MD files into a resource Kiro can query. &lt;/p&gt;

&lt;h2&gt;
  
  
  Start here
&lt;/h2&gt;

&lt;p&gt;download the docs and get Kiro reading the exact Godot version for your project.&lt;br&gt;
&lt;a href="https://docs.godotengine.org/en/stable/" rel="noopener noreferrer"&gt;GodotEngine Docs&lt;/a&gt;&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.amazonaws.com%2Fuploads%2Farticles%2Fm2j86xiqnujyvp5slzmd.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.amazonaws.com%2Fuploads%2Farticles%2Fm2j86xiqnujyvp5slzmd.png" alt=" " width="800" height="547"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Scroll down and click Stable (or Latest) to download the documentation — expect a ~300–400 MB zip. Extract it to a folder you control (for example Documents), and rename the top-level folder to GodotDocs so it’s easy to reference.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Example path used throughout this guide:&lt;/p&gt;

&lt;p&gt;C:/Users/SNAP/Documents/GodotDocs&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You have the Godot docs downloaded and extracted (see top).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Node.js + npm installed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The @modelcontextprotocol/server-filesystem package installed globally:&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;npm install -g @modelcontextprotocol/server-filesystem&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Let Kiro spawn the server
&lt;/h2&gt;

&lt;p&gt;Kiro expects MCP servers to be spawnable so it can attach via stdio. Open Kiro, go to the kiro tab and navigate to the mcp server part :&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.amazonaws.com%2Fuploads%2Farticles%2F1g68mh6mdyq7lvxcmh9y.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.amazonaws.com%2Fuploads%2Farticles%2F1g68mh6mdyq7lvxcmh9y.png" alt=" " width="800" height="362"&gt;&lt;/a&gt;&lt;br&gt;
click on the small edit icon to open MCP config and add this making sure you use your own path to the docs:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "mcpServers": {
    "godotDocs": {
      "command": "mcp-server-filesystem",
      "args": [
        "C:/Users/SNAP/Documents/GodotDocs"
      ],
      "env": {},
      "disabled": false,
      "autoApprove": []
    }
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Notes:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;If your docs live under .../GodotDocs/en, update the args value accordingly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Save the file and re-open the project in Kiro. Kiro should spawn godotDocs automatically and show it under Ghost → MCP servers.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Verify it works from Kiro
&lt;/h2&gt;

&lt;p&gt;Ask your Kiro assistant (or use the Ghost console) things like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Search the Godot docs for "AnimationPlayer"&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open the Godot class reference for Node3D&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Find examples of move_and_slide()&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If Kiro returns snippets, filenames, or file content from your local docs, the MCP is connected correctly.&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.amazonaws.com%2Fuploads%2Farticles%2Fjdivmtowy54bgv1gkwm5.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.amazonaws.com%2Fuploads%2Farticles%2Fjdivmtowy54bgv1gkwm5.png" alt=" " width="498" height="148"&gt;&lt;/a&gt;&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.amazonaws.com%2Fuploads%2Farticles%2F3norkzoqy5xy6da901to.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.amazonaws.com%2Fuploads%2Farticles%2F3norkzoqy5xy6da901to.png" alt=" " width="586" height="468"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>kiro</category>
    </item>
  </channel>
</rss>
