<?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: rarora2026-gif</title>
    <description>The latest articles on DEV Community by rarora2026-gif (@rarora2026gif).</description>
    <link>https://dev.to/rarora2026gif</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%2F4126384%2F31029f1c-7f63-4754-b11d-cb9aada45f44.png</url>
      <title>DEV Community: rarora2026-gif</title>
      <link>https://dev.to/rarora2026gif</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rarora2026gif"/>
    <language>en</language>
    <item>
      <title>I built an MCP server that tells you why ChatGPT never mentions your product</title>
      <dc:creator>rarora2026-gif</dc:creator>
      <pubDate>Tue, 15 Sep 2026 17:06:10 +0000</pubDate>
      <link>https://dev.to/rarora2026gif/i-built-an-mcp-server-that-tells-you-why-chatgpt-never-mentions-your-product-5chj</link>
      <guid>https://dev.to/rarora2026gif/i-built-an-mcp-server-that-tells-you-why-chatgpt-never-mentions-your-product-5chj</guid>
      <description>&lt;p&gt;Your rank tracker measures Google. It says nothing about the moment a buyer asks ChatGPT "what's the best X" and gets three names back. If you're not one of them, you lost the deal before your site loaded, and nothing in the classic SEO stack sees it happen.&lt;/p&gt;

&lt;p&gt;So I built Cituna: it asks the same buyer prompts across all seven answer engines (ChatGPT, Perplexity, Gemini, Claude, Grok, Google AI Overviews and Google AI Mode) every day, records who each one cited, then generates the fix. And because I live in Claude, I exposed it over the Model Context Protocol.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wire it into Claude
&lt;/h2&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;"cituna"&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;"cituna-mcp"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"env"&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;"CITUNA_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"cituna_sk_..."&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;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;p&gt;Run &lt;code&gt;npx cituna-mcp&lt;/code&gt; and you're live. Generate a key in the app under Integrations.&lt;/p&gt;

&lt;h2&gt;
  
  
  A real first conversation
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;You:&lt;/strong&gt; We sell scheduling software. Why does ChatGPT never mention us?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude:&lt;/strong&gt; (get_visibility) You're cited in 3 of 18 prompt x engine cells. (get_engine_answers) For "best scheduling software for clinics" ChatGPT cites Calendly, Acuity and a Capterra roundup. Every citation is a third-party list you are absent from. (gsc_query) Google already sends you 1,240 impressions for that intent. So you are Google-visible and AI-invisible.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That is the whole point of answer engine optimization: a perfect page does not matter if the engines build their answer out of roundups, Reddit threads and comparison pages you are not on.&lt;/p&gt;

&lt;h2&gt;
  
  
  The tools
&lt;/h2&gt;

&lt;p&gt;Sixteen tools, twelve read and four write:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;get_visibility&lt;/code&gt;: the daily prompt x engine grid&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_engine_answers&lt;/code&gt;: what each engine actually said, and who it cited instead&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;list_gaps&lt;/code&gt; / &lt;code&gt;set_gap_status&lt;/code&gt;: the fix queue&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;gsc_*&lt;/code&gt;: Search Console joined to the answers&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;queue_article&lt;/code&gt;: hand a gap to the content generator&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The same data is available over a REST API if you would rather build on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why an MCP and not just a dashboard
&lt;/h2&gt;

&lt;p&gt;Because the reasoning happens where you already are. I do not want to open a tab to learn why I am invisible; I want to ask the model that is ignoring me.&lt;/p&gt;

&lt;p&gt;The first scan is free and runs on your real domain: &lt;a href="https://cituna.com" rel="noopener noreferrer"&gt;https://cituna.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>chatgpt</category>
      <category>llm</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
