<?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: Bogdan Ciric</title>
    <description>The latest articles on DEV Community by Bogdan Ciric (@bogdanciric).</description>
    <link>https://dev.to/bogdanciric</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%2F4013865%2F2d15ab5d-86ab-4cbb-aac8-c669429a4b10.png</url>
      <title>DEV Community: Bogdan Ciric</title>
      <link>https://dev.to/bogdanciric</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bogdanciric"/>
    <language>en</language>
    <item>
      <title>Tool-MCP vs spine-MCP: why an AI agent needs the join, not one API</title>
      <dc:creator>Bogdan Ciric</dc:creator>
      <pubDate>Fri, 03 Jul 2026 16:35:25 +0000</pubDate>
      <link>https://dev.to/bogdanciric/tool-mcp-vs-spine-mcp-why-an-ai-agent-needs-the-join-not-one-api-17e7</link>
      <guid>https://dev.to/bogdanciric/tool-mcp-vs-spine-mcp-why-an-ai-agent-needs-the-join-not-one-api-17e7</guid>
      <description>&lt;p&gt;Most "AI in [product tool]" features ship the same shape: bolt a chat agent onto the database the tool already had, expose it over MCP, call it done. Productboard's agent reads Productboard. Linear's agent reads Linear. Notion's agent reads Notion.&lt;/p&gt;

&lt;p&gt;That's a &lt;strong&gt;tool-MCP&lt;/strong&gt;: an AI host can call one product's API. Useful — but it inherits that tool's biggest limitation. It only ever sees one slice.&lt;/p&gt;

&lt;p&gt;Here's the query that breaks it:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Which paying customers are blocked on open feature requests?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To answer, you need the feedback (support/insight tool), the accounts and their revenue (billing), and the open work (issue tracker). Three tools, three identity models, no shared key. A tool-MCP over any one of them can't answer it — not because the model is weak, but because the context is amputated.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tool-MCP vs spine-MCP
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tool-MCP&lt;/strong&gt; — exposes one product's objects. The AI reasons over a slice.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Spine-MCP&lt;/strong&gt; — exposes a &lt;em&gt;joined&lt;/em&gt; record. The AI reasons over the whole product: the feedback, the feature you shipped for it, the revenue it moved, and the commit that shipped it — on one row per customer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The wedge isn't "more tools in a box." It's the &lt;strong&gt;join&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it looks like
&lt;/h2&gt;

&lt;p&gt;Point your own AI host at the spine — one line, OAuth, no API-key paste:&lt;/p&gt;

&lt;p&gt;​&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add aioproductos &lt;span class="nt"&gt;--transport&lt;/span&gt; http https://aioproductos.com/api/mcp
​&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;


Same idea, different config file &lt;span class="k"&gt;for &lt;/span&gt;ChatGPT, Cursor, Codex, Windsurf, and Cline. OAuth 2.1 + DCR + PKCE.

Then ask, from the host:

&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="s2"&gt;"Which paying customers are blocked on open features?"&lt;/span&gt;

​
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="sb"&gt;```&lt;/span&gt;text
SAML/SSO    &lt;span class="nv"&gt;$13&lt;/span&gt;,000/mo · 4 accounts · open · &lt;span class="k"&gt;in &lt;/span&gt;current sprint
Audit Log    &lt;span class="nv"&gt;$3&lt;/span&gt;,690/mo · 2 accounts · shipped · 100% adoption
Usage Alerts &lt;span class="nv"&gt;$1&lt;/span&gt;,900/mo · 1 account  · open
...
​&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;


The answer comes from the data — the &lt;span class="nb"&gt;join&lt;/span&gt; — not from the model&lt;span class="s1"&gt;'s guess.

## The part devs actually ask: is the "AI" real?

Honest answer: the retrieval is deterministic, the narration is the model. A question hits a classifier, a deterministic SQL reader pulls the joined rows, and the LLM narrates the result. The numbers aren'&lt;/span&gt;t hallucinated because the model never computes them — it reads them.

&lt;span class="o"&gt;(&lt;/span&gt;Gartner reckons 40%+ of &lt;span class="s2"&gt;"agentic AI"&lt;/span&gt; projects get cancelled by 2027, mostly because the &lt;span class="s2"&gt;"agent"&lt;/span&gt; was a chat box over a thin database. Over-prove, don&lt;span class="s1"&gt;'t over-claim.)

Same substrate powers assignable AI teammates — Backend, Frontend, QA. They claim a task over MCP, do the work in your own coding host, and submit for human review before anything ships.

## When a tool-MCP is enough (the honest counter-case)

If your question lives entirely inside one tool — "what'&lt;/span&gt;s &lt;span class="k"&gt;in &lt;/span&gt;this sprint,&lt;span class="s2"&gt;" "&lt;/span&gt;summarise this doc&lt;span class="s2"&gt;" — a tool-MCP is simpler and you don't need a spine. Spine-MCP only earns its keep when the answer spans tools: revenue × feedback × work × code. We don't out-feature Linear on sprint mechanics or Amplitude on analytics depth; the whole bet is the join *across* them.

## Try it

- **Read-only demo, no signup:** [aioproductos.com](https://aioproductos.com) → "&lt;/span&gt;Browse the live demo&lt;span class="s2"&gt;" (there's a skip link). Real seeded workspace, writes blocked.
- **MCP endpoint:** {% raw %}&lt;/span&gt;&lt;span class="sb"&gt;`&lt;/span&gt;https://aioproductos.com/api/mcp&lt;span class="sb"&gt;`&lt;/span&gt;&lt;span class="s2"&gt;

If you build MCP servers, I'd genuinely value the critique: where does "&lt;/span&gt;one record&lt;span class="s2"&gt;" break for your workflow?
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>saas</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
