<?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: Alex Boissonneault</title>
    <description>The latest articles on DEV Community by Alex Boissonneault (@alexboissonneault).</description>
    <link>https://dev.to/alexboissonneault</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%2F3894793%2Feaa5d929-6fb4-427d-b3b3-88bd17ab2393.png</url>
      <title>DEV Community: Alex Boissonneault</title>
      <link>https://dev.to/alexboissonneault</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alexboissonneault"/>
    <language>en</language>
    <item>
      <title>I Built the First GTM-Native MCP Server — Here's What I Learned</title>
      <dc:creator>Alex Boissonneault</dc:creator>
      <pubDate>Wed, 29 Apr 2026 14:50:15 +0000</pubDate>
      <link>https://dev.to/alexboissonneault/i-built-the-first-gtm-native-mcp-server-heres-what-i-learned-1mdi</link>
      <guid>https://dev.to/alexboissonneault/i-built-the-first-gtm-native-mcp-server-heres-what-i-learned-1mdi</guid>
      <description>&lt;p&gt;When Anthropic released the Model Context Protocol (MCP) spec, most developers immediately saw database connectors, file-system tools, and API wrappers. I saw something different: a direct bridge between an AI assistant and the revenue chaos that kills most SMBs.&lt;/p&gt;

&lt;p&gt;I've spent 15 years fixing broken go-to-market operations — seven major enterprise transformations, including work that contributed to $800M in revenue at Québecor's retail network. Every single engagement had the same root problem: the data existed, but no one could turn it into a decision fast enough.&lt;/p&gt;

&lt;p&gt;MCP changes that equation. So I built the &lt;a href="https://artefactventures.com/en/mcp" rel="noopener noreferrer"&gt;Artefact MCP Server&lt;/a&gt; — the first MCP server purpose-built for GTM revenue intelligence — and published it as open source.&lt;/p&gt;

&lt;p&gt;Here's what I learned building it, and why the architecture decisions matter if you're thinking about AI-native revenue operations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why GTM Data Is Uniquely Hard for AI&lt;/strong&gt;&lt;br&gt;
Before I explain what I built, it's worth explaining why this problem is harder than it looks.&lt;/p&gt;

&lt;p&gt;Most MCP servers solve a data-access problem: "let the AI read my calendar" or "let the AI query my database." That's valuable, but it's table stakes. The harder problem in GTM is not access — it's interpretation.&lt;/p&gt;

&lt;p&gt;When a sales manager asks "how is my pipeline doing?", they don't want a row count. They want to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which deals are at risk of stalling before month-end&lt;/li&gt;
&lt;li&gt;Which accounts are showing expansion signals&lt;/li&gt;
&lt;li&gt;What constraint is currently limiting revenue growth — traffic, conversion, deal size, or velocity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This requires methodology embedded alongside data access. Raw HubSpot data + an LLM produces hallucinated optimism. HubSpot data + structured analytical frameworks + an LLM produces actual intelligence.&lt;/p&gt;

&lt;p&gt;That's the gap I built Artefact MCP to fill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The 7 Tools: What Each One Does and Why It Exists&lt;/strong&gt;&lt;br&gt;
The Artefact MCP Server exposes seven structured tools through Anthropic's Model Context Protocol. Each one is a conversation between your AI assistant and a specific revenue framework.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Pipeline Signal Detection&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;What it does:&lt;/strong&gt; Classifies pipeline activity into 6 signal types with evidence-backed scoring.&lt;/p&gt;

&lt;p&gt;The 6 signal types:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Momentum Shift&lt;/strong&gt;— acceleration or deceleration in deal progress&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stall Pattern&lt;/strong&gt; — deals not advancing past expected timelines&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Conversion Anomaly&lt;/strong&gt; — unexpected conversion rate changes at any stage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Engagement Spike&lt;/strong&gt; — sudden increases in prospect or customer activity&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk Indicator&lt;/strong&gt; — early warning signs of deal loss or churn&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Expansion Signal&lt;/strong&gt; — indicators of upsell or cross-sell opportunity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why it exists:&lt;/strong&gt; Most pipeline reviews are vibes dressed up as data. A rep says a deal is "progressing well" because the prospect replied to an email. This tool turns behavioral signals into scored, categorized intelligence that doesn't depend on rep optimism.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Detect signals in my current pipeline and flag anything that needs attention this week."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Constraint Analysis&lt;/strong&gt;&lt;br&gt;
What it does: Uses the Revenue Formula to identify the single dominant constraint limiting your growth.&lt;br&gt;
The Revenue Formula breaks down like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Revenue = Traffic × Conversion Rate × Average Deal Size × Velocity
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every company has one bottleneck that, if fixed, would unlock disproportionate growth. This tool identifies whether that bottleneck is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Traffic&lt;/strong&gt; (not enough pipeline entering the top)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Conversion&lt;/strong&gt; (deals not progressing through stages)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deal size&lt;/strong&gt; (closing too small)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Velocity&lt;/strong&gt; (taking too long to close)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why it exists:&lt;/strong&gt; I've watched companies spend $200K on lead generation when their real problem was a broken demo-to-proposal conversion rate of 8%. Fix the constraint, not everything.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Analyze my pipeline data and tell me what's the primary constraint on my revenue right now."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Value Engine Analysis&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;What it does:&lt;/strong&gt; Assesses the health of three value engines — Growth, Fulfillment, and Innovation — and reveals which one is underpowered.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The three engines:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Growth Engine&lt;/strong&gt; — how you acquire and expand customers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fulfillment Engine&lt;/strong&gt; — how you deliver value and retain customers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Innovation Engine&lt;/strong&gt; — how you build new capabilities and stay ahead&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most SMBs over-invest in the Growth Engine and ignore the other two, then wonder why churn is high or why they keep losing deals to better-featured competitors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Evaluate my value engines and tell me where to invest next quarter."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. GTM Commit Drafting&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;What it does:&lt;/strong&gt; Drafts structured GTM change proposals — like version control for your go-to-market strategy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Each commit includes:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Intent&lt;/strong&gt; — what you're changing and why&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Evidence&lt;/strong&gt; — the data supporting the change&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Impact surface&lt;/strong&gt; — what parts of the business are affected&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rollback criteria&lt;/strong&gt; — what would trigger reverting the change&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why it exists:&lt;/strong&gt; Most GTM changes are made on instinct and reversed on panic. Treating strategy changes like code commits — with explicit evidence requirements and rollback plans — forces rigor and creates an institutional memory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Draft a GTM commit for changing our ICP from SMBs under 50 employees to 50-200 employees, based on our last 6 months of deal data."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. ICP Triangulation&lt;/strong&gt;&lt;br&gt;
What it does: Builds an ideal customer profile using three dimensions, and generates a composite fit score per account.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The three dimensions:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Company attributes&lt;/strong&gt; — firmographics: size, industry, location, revenue band&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Behavioral signals&lt;/strong&gt; — engagement patterns, purchase history, support interactions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Growth indicators&lt;/strong&gt; — funding rounds, hiring trends, expansion signals&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most ICPs stop at firmographics. That's like hiring based only on job title — you'll miss the best candidates and recruit expensive disappointments.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Triangulate my ICP using my last 90 days of closed-won deals and score my current open opportunities."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. RFM Analysis Engine&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;What it does:&lt;/strong&gt; Classifies customers across 11 segments based on Recency, Frequency, and Monetary value, with pre-built retention strategies per segment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The 11 segments:&lt;/strong&gt;&lt;br&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%2Fs4xzjgktrp99cmm4xzob.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%2Fs4xzjgktrp99cmm4xzob.png" alt=" " width="800" height="725"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it exists:&lt;/strong&gt; Every segment needs a different intervention. Sending a win-back campaign to your Champions is not just wasteful — it's actively damaging. This tool generates segment-specific strategies automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Run RFM analysis on my customer base and tell me which segments need attention this month."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Pipeline Health Scoring&lt;/strong&gt;&lt;br&gt;
What it does: Generates a 0–100 pipeline health score by analyzing velocity, stage distribution, conversion rates, and deal aging.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The score factors in:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Velocity through each stage&lt;/li&gt;
&lt;li&gt;Distribution balance (too many deals stacked in one stage = a problem)&lt;/li&gt;
&lt;li&gt;Conversion rates stage by stage&lt;/li&gt;
&lt;li&gt;Deal aging relative to your average sales cycle&lt;/li&gt;
&lt;li&gt;Exit criteria compliance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example query:&lt;/strong&gt; "Score my pipeline health and tell me what's dragging the number down."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to Install and Use It&lt;/strong&gt;&lt;br&gt;
The install is deliberately simple — one command, no dependency management required:&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;Then configure it in your AI assistant's MCP settings:&lt;br&gt;
&lt;code&gt;bash&lt;br&gt;
claude mcp add artefact-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It works with &lt;strong&gt;Claude Desktop, Claude Code,&lt;/strong&gt; and &lt;strong&gt;Cursor&lt;/strong&gt;. No API key required to get started — the server ships with sample data so you can explore every tool immediately.&lt;br&gt;
For live HubSpot data, upgrade to Pro (the configuration takes about 2 minutes).&lt;/p&gt;

&lt;p&gt;Full documentation and the source code are at: github.com/alexboissAV/artefact-mcp-server&lt;a href="https://github.com/alexboissAV/artefact-mcp-server" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The package is published on PyPI: &lt;a href="https://pypi.org/project/artefact-mcp/" rel="noopener noreferrer"&gt;pypi.org/project/artefact-mcp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I Got Wrong the First Time&lt;/strong&gt;&lt;br&gt;
The first version of Artefact MCP was basically a HubSpot API wrapper with some prompts. It was useless. An AI assistant with read access to your CRM is not intelligence — it's just a slower way to look at data you already had.&lt;br&gt;
The breakthrough was embedding the methodology inside the tool definitions. Instead of returning raw pipeline data and hoping the LLM would know what to do with it, each tool returns structured, scored, categorized output that tells the AI what it means — not just what it is.&lt;br&gt;
That shift — from data access to data interpretation — is what makes the difference between a party trick and a revenue advisor.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's Next&lt;/strong&gt;&lt;br&gt;
The current release is v0.3. On the roadmap:&lt;/p&gt;

&lt;p&gt;Multi-CRM support (Salesforce, Pipedrive) for Enterprise tier&lt;br&gt;
Custom signal configurations — define your own signal taxonomy&lt;br&gt;
Integration with the Artefact CRO Platform for continuous monitoring&lt;/p&gt;

&lt;p&gt;If you're building AI-native GTM tooling or working on MCP integrations for revenue operations, I'd genuinely enjoy the conversation. Reach out at &lt;a href="mailto:alex@artefactventures.com"&gt;alex@artefactventures.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;FAQ&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;What is the Artefact MCP Server?&lt;/strong&gt;&lt;br&gt;
The Artefact MCP Server is an open-source Model Context Protocol server that transforms AI assistants like Claude into revenue intelligence advisors. It provides seven structured tools — Pipeline Signal Detection, Constraint Analysis, Value Engine Analysis, GTM Commit Drafting, ICP Triangulation, RFM Analysis, and Pipeline Health Scoring — accessible through natural language queries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do I install the Artefact MCP Server?&lt;/strong&gt; &lt;br&gt;
Run &lt;code&gt;pip install artefact-mcp&lt;/code&gt; to install, then &lt;code&gt;claude mcp add artefact-mcp&lt;/code&gt; to configure it with Claude Desktop or Claude Code. No API key is required for sample data mode.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What AI assistants does Artefact MCP work with?&lt;/strong&gt; &lt;br&gt;
Artefact MCP is compatible with Claude Desktop, Claude Code, and Cursor. It implements Anthropic's Model Context Protocol standard.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is Artefact MCP free?&lt;/strong&gt;&lt;br&gt;
Yes. The free tier includes all 7 tools running on sample data. The Pro tier ($149/month) adds live HubSpot data, custom RFM thresholds, and custom ICP mapping. Enterprise ($499/month) adds multi-CRM support and dedicated onboarding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the difference between Artefact MCP and the HubSpot MCP Server?&lt;/strong&gt;&lt;br&gt;
HubSpot's MCP server (which reached GA in April 2026) handles CRM operations — reading and writing to contacts, deals, companies, and other objects. Artefact MCP handles revenue intelligence — analysis, scoring, signal detection, and strategic frameworks. They are complementary, not competing.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Alex Boissonneault is the founder of &lt;a href="https://artefactventures.com/en/" rel="noopener noreferrer"&gt;Artefact Ventures&lt;/a&gt;, a Québec-based consulting and product firm specializing in AI-native GTM systems and revenue intelligence for SMBs.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>gtm</category>
      <category>claude</category>
    </item>
  </channel>
</rss>
