Back to Blog
AI

MCP Hit 97 Million Installs: What It Means for n8n Automation Agencies

March 30, 2026·3 min read·Amit El
MCP Hit 97 Million Installs: What It Means for n8n Automation Agencies

MCP just crossed 97 million monthly installs. That number was published on March 25th, and it is worth pausing on for a second: nine months ago, Model Context Protocol was mostly a whitepaper and a few excited blog posts. Now it is load-bearing infrastructure for a huge chunk of the agentic developer ecosystem.

If you are running an automation agency on n8n, this matters more to you than most. Here is why, and what you can actually do with it.

What MCP is, quickly

Model Context Protocol is a standard that lets AI models talk to external tools and data sources in a structured, consistent way. Think of it like USB-C for AI agents: instead of every tool needing a custom integration with every AI, you define a server that speaks MCP, and any MCP-compatible agent can use it.

Anthropic originally designed it, then donated it to the Linux Foundation in December 2025. Since then OpenAI, Google, and Microsoft have all adopted it. There are now over 5,800 MCP servers available. It won. The protocol wars are over.

Where n8n fits in

n8n has native MCP support, both as a client (your n8n workflows can call MCP servers) and as a server (you can expose n8n workflows as MCP tools that AI agents can invoke). This is a big deal for agency work.

Here is the practical picture: your client asks you to build them an AI assistant that can check their CRM, update project statuses, and send Slack messages. The old way was to build custom code integrations or stitch together API calls inside a prompt. The new way is to expose those capabilities as an MCP server and let the agent call them directly. n8n handles the underlying complexity -- authentication, rate limits, data transformation -- and the agent just sees clean tool calls.

The workflow you have already built for a client? It can become an MCP tool in an afternoon.

Why this changes the agency pitch

Until recently, selling AI automation to clients meant a lot of hand-waving about what "AI-powered" actually meant in practice. The tooling was fragmented and most clients could not see a clear path from "AI assistant" to "AI assistant that can actually do things in my systems."

MCP gives you a cleaner story. You are not just building workflows -- you are building an integration layer that AI can reliably use. As clients start experimenting with Claude, ChatGPT, or custom agents, they will need someone who knows how to build MCP servers that connect those agents to their real business systems. That is you.

The agencies that get ahead in the next 12 months will not just be workflow builders. They will be the people who know how to safely expose client infrastructure to AI agents without things going sideways.

A few practical things to know before you build

MCP servers need to handle auth carefully. When you expose a client's CRM or project management tool through an MCP server, you want to make sure the agent can only do what it is supposed to do. n8n's credential system handles this reasonably well, but think about scope explicitly before you deploy anything production-facing.

Transport matters too. The original MCP spec used stdio transport, which works fine for local dev but does not scale for cloud-hosted agents. The 2026 MCP roadmap prioritizes HTTP-based streaming transports (SSE and the newer Streamable HTTP spec). If you are building for clients, target the HTTP transports from the start -- you will save yourself a painful migration later.

And versioning. MCP servers can evolve, and agents cache tool definitions. Build with explicit versioning from day one or you will end up debugging why an agent is calling a tool that no longer exists.

The operational side

Running MCP servers in production means you need somewhere to host them, a way to manage credentials per client, and some observability into what the agents are actually calling. If you are self-hosting n8n, you are already dealing with most of this infrastructure -- the MCP server piece is an extension of what you have got. If you want that layer managed for you, FlowEngine handles n8n hosting and the surrounding infrastructure so you can focus on building the actual integrations rather than maintaining servers.

The takeaway

97 million monthly installs means MCP has crossed the threshold from "interesting new thing" to "thing your clients will be asking about." The agencies that have already built a few MCP servers will have a significant head start when that happens. n8n makes it reasonably straightforward to get started -- expose a workflow, test it with a local Claude setup, and see how the agent interacts with your tools. An afternoon of experimentation now is worth considerably more than catching up in six months.

AIautomationn8nmcp