<?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>Forem: Jawdat Nassar</title>
    <description>The latest articles on Forem by Jawdat Nassar (@jawdat6).</description>
    <link>https://forem.com/jawdat6</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%2F3837037%2Fd5b36374-edf9-4d29-aa58-07b9a37a2c44.jpg</url>
      <title>Forem: Jawdat Nassar</title>
      <link>https://forem.com/jawdat6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jawdat6"/>
    <language>en</language>
    <item>
      <title>We built a searchable database of 25K verified engineering fixes — here's why</title>
      <dc:creator>Jawdat Nassar</dc:creator>
      <pubDate>Sat, 21 Mar 2026 13:17:00 +0000</pubDate>
      <link>https://forem.com/jawdat6/we-built-a-searchable-database-of-25k-verified-engineering-fixes-heres-why-bm4</link>
      <guid>https://forem.com/jawdat6/we-built-a-searchable-database-of-25k-verified-engineering-fixes-heres-why-bm4</guid>
      <description>&lt;p&gt;Every developer has spent hours debugging an error that someone else already solved. Stack Overflow is fragmented. GitHub issues are buried. AI models hallucinate fixes.&lt;/p&gt;

&lt;p&gt;We built &lt;strong&gt;FIXGRAPH&lt;/strong&gt; to fix this.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;FIXGRAPH is a searchable database of 25,000+ verified engineering fixes, indexed by error message and technology stack. You search for your error — Prisma connection refused, Docker OOM, Vercel deploy failed, Redis ECONNREFUSED — and get step-by-step solutions that actually worked, with trust scores.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live:&lt;/strong&gt; &lt;a href="https://fixgraph.netlify.app" rel="noopener noreferrer"&gt;https://fixgraph.netlify.app&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why we built it
&lt;/h2&gt;

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

&lt;p&gt;&lt;strong&gt;1. Human debugging is repetitive.&lt;/strong&gt; The same 500 errors account for 80% of engineering time lost. Every team rediscovers them from scratch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. AI agents need verified fixes, not hallucinated ones.&lt;/strong&gt; When a coding agent hits an unknown error, it guesses. We wanted to give it a lookup table of what actually works.&lt;/p&gt;

&lt;h2&gt;
  
  
  The MCP server
&lt;/h2&gt;

&lt;p&gt;The most useful part: we published FIXGRAPH as an MCP (Model Context Protocol) server so AI coding agents can query it mid-task.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx fixgraph-mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Wire it into Claude, Cursor, or any MCP-compatible agent. When it hits a known error, it looks up the verified fix instead of hallucinating.&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;"fixgraph"&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;"npx"&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;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"fixgraph-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;
  
  
  What's in the database
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;25,009 issues&lt;/strong&gt; covering Prisma, Docker, Redis, Vercel, PostgreSQL, Next.js, AWS, and more&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;25,047 fixes&lt;/strong&gt; with step-by-step solutions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;4,962 verifications&lt;/strong&gt; — community-confirmed working fixes&lt;/li&gt;
&lt;li&gt;Trust scores on every fix&lt;/li&gt;
&lt;li&gt;Full-text + semantic search&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to use it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;As a developer:&lt;/strong&gt; Search by error message at &lt;a href="https://fixgraph.netlify.app" rel="noopener noreferrer"&gt;https://fixgraph.netlify.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;As an AI agent:&lt;/strong&gt; &lt;code&gt;npm install fixgraph-mcp&lt;/code&gt; and add to your MCP config&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Rate-limited API for high-volume agent usage&lt;/li&gt;
&lt;li&gt;Dataset exports for teams training on engineering knowledge&lt;/li&gt;
&lt;li&gt;Submission pipeline so teams can contribute their own fixes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you've ever spent 3 hours on an error that had a 5-minute fix somewhere on the internet — this is for you.&lt;/p&gt;

&lt;p&gt;Try it: &lt;a href="https://fixgraph.netlify.app" rel="noopener noreferrer"&gt;https://fixgraph.netlify.app&lt;/a&gt;&lt;br&gt;
MCP package: &lt;code&gt;npm install fixgraph-mcp&lt;/code&gt;&lt;/p&gt;

</description>
      <category>devtools</category>
      <category>ai</category>
      <category>debugging</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
