If you sit anywhere near a technology budget, you have probably heard the acronym MCP three times this quarter: once from a vendor, once from a developer, and once in a slide deck. Most explanations either drown you in protocol details or wave it away as plumbing. Neither helps you decide whether it matters for connecting AI to the systems your business actually runs on.

Here is the practitioner version. MCP is the integration layer AI agents were missing, it is a standard rather than a product, and building servers against it well is quickly becoming its own engineering discipline. We build these for clients. This is what the work really looks like.

The short answer: MCP (Model Context Protocol) is an open standard that connects AI applications to business systems through one reusable integration layer instead of bespoke glue code per assistant. An MCP server exposes narrow, typed tools and resources from your ERP, CRM or knowledge base to any compliant AI client. In MCP development engagements at AGI Software Solutions, a read-only lookup server takes one to three weeks; an action server with approval gates and audit logging takes three to six.

The problem MCP was invented to solve

Before MCP, connecting an AI assistant to an internal system meant bespoke glue code, and the shape of that glue depended on both ends: the assistant's function-calling format on one side, your ERP or CRM's API on the other. Connect three AI tools to four internal systems and you are maintaining twelve integrations, each with its own auth handling, error mapping, and schema quirks.

Worse, the glue kept breaking. Providers changed their tool-calling conventions, SDKs deprecated methods, and every model upgrade meant re-testing every connector. The moment you evaluated a different model, the integration layer had to be rebuilt from scratch. Integration work was disposable by design.

That N×M explosion is the real problem. It was never that AI could not reach your data; with enough custom code it always could. It was that every path from a model to a system was a one-off that nobody else could reuse.

What the Model Context Protocol actually is

MCP, the Model Context Protocol, is an open standard for exposing capabilities to AI applications. It originated at Anthropic in late 2024 and has since been adopted far beyond it; the major model providers, the serious IDEs, and most agent frameworks all speak it now. The specification is public and the SDKs are open source.

An MCP server is a small program that sits in front of a system you own and advertises three kinds of things to any MCP-capable client:

The USB-C comparison you keep hearing is accurate in exactly one way: the standard decouples the two sides. Device makers stopped building a charger per laptop; you stop building an integration per assistant. One server, any compliant client. That is the whole trick, and it is enough.

Anatomy of a minimal, useful MCP server

The servers that earn their keep are usually small. A first server for a distribution business might expose exactly two tools:

That is a few hundred lines of code including plumbing, and it already changes how a support team works. Instead of alt-tabbing between the ERP and the helpdesk, they ask the assistant; the assistant calls the server; the answer comes from live data instead of memory.

Around those two tools sits the unglamorous seventy percent of the work:

The three patterns clients actually ask us for

1. Read-only lookup servers

ERP and CRM lookups: order status, stock levels, customer history, invoice ageing. No writes at all. Nearly every engagement should start here, because the failure mode of a bad read is a wrong answer, while the failure mode of a bad write is a wrong action in your system of record.

2. Action servers with approval gates

Tools that change state: create a ticket, draft a purchase order, move a CRM stage. Anything irreversible gets a human confirmation step in front of it. The pattern that works in practice: the model proposes, the server stages the action as a draft, and a person approves it inside the system they already use. These pair naturally with the workflow-shaped agents we described in AI agents as automation workflows.

3. Internal-knowledge servers

Policies, SOPs, product documentation, and contract templates exposed as resources with a search tool on top. This is cheaper to build and far easier to keep current than fine-tuning a model, and every answer can cite the live document instead of a training-data snapshot.

Security is the whole game

An MCP server is an API gateway with a language model on the other end, and language models can be manipulated by the text they read. If you take one thing from this post, take the design rules:

If a tool accepts raw SQL, you have not built an integration. You have built an incident that ships with its own JSON schema.

Building one that survives production

The gap between a demo MCP server and one you can leave running is discipline, not cleverness. Our working rules:

Why this changes the integration economics

The commercial argument is short. Before MCP, an integration budget bought glue for one assistant, and evaluating a second one meant paying again. Now the server outlives any single client. The connector you build so a support assistant can read the ERP is the same one your developers use from their IDE and the same one your background agents call at 2 a.m. The automation patterns we covered in how Claude is changing business automation all get cheaper once the connectors are standard instead of bespoke.

It also changes vendor risk. When the integration layer speaks an open protocol, switching or mixing models stops requiring an integration rewrite, which means the largest hidden lock-in cost in most AI stacks simply goes away. And it changes how we scope agent projects: in our AI agent development engagements the MCP server is frequently the first deliverable and the agent comes second, because an agent with clean, narrow, well-described tools is dramatically easier to make reliable than one wired straight into raw APIs.

On effort: the read-only lookup servers we scope against systems with a sane API usually land in the one-to-three-week range; action servers with approval gates and audit logging tend to run three to six weeks. The multiplier is on your side of the table, because the second and third AI use case reuses the same server for close to zero additional integration cost.

Where to start

Frequently asked questions

What is an MCP server?

A small program that sits in front of a system you own — an ERP, CRM, helpdesk or document store — and advertises tools, resources and prompts to any MCP-compatible AI client. One server works with any compliant client, so the integration outlives any single assistant or model.

What is the Model Context Protocol used for?

Connecting AI applications to external systems through one standard layer instead of bespoke per-assistant glue code. The connector built so a support assistant can read the ERP is the same one developers use from their IDE and the same one background agents call at 2 a.m.

How long does it take to build an MCP server?

Read-only lookup servers against a system with a sane API usually land in one to three weeks; action servers with approval gates and audit logging run three to six. Later AI use cases reuse the same server for close to zero additional integration cost.

Is it safe to point an AI agent at my ERP?

Yes, with discipline: least-privilege tools, separate rules for reads and writes, human approval on anything irreversible, per-server scoped credentials, and an audit log of every call. Retrieved content is treated as untrusted, so a read can never auto-trigger a write.

Do I need MCP or a direct API integration?

One AI feature in one product: direct integration is fine, MCP is overhead. Assistants, agents or IDE access touching more than one internal system: build MCP servers, because that is when integration work stops being disposable and starts compounding.

Related reading