Skip to main content

The MCPA Is Here: What a 120-Minute, 5-Domain MCP Exam Says About Production MCP Operations

8 min readDora NodaDora Noda
Share
On this page

Two days ago, the Model Context Protocol got its first professional exam. On September 14, 2026, the Agentic AI Foundation announced the Model Context Protocol Associate (MCPA) — a 120-minute, online, proctored, multiple-choice certification, vendor-neutral, aimed at AI engineers, platform builders, and AI governance professionals. It is the first official credential validating MCP knowledge, and the first certification the foundation has launched.

But the interesting part is not that the exam exists. It is the domain weights. Here they are, because the whole argument of this post hangs on them:

Exam domainWeight
Interactions & Execution26%
Security & Governance24%
Use Cases & Ecosystem20%
MCP Fundamentals16%
Architecture & Components14%

Half the exam — a full 50% — is execution and security: message flow and protocol primitives, tool invocation, trust boundaries, permissions, and risk controls. The "what is MCP" material (fundamentals plus architecture) is 30%. That split is a field report disguised as a syllabus. It says the industry's hard-won lesson from two years of MCP in production is that connecting a model to tools was the easy part, and running those tools safely is where everything breaks.

The timing sharpens the point. The exam is live and open for enrollment now, announced as the community convenes for AGNTCon + MCPCon Europe in Amsterdam this week — with the North America edition following October 22–23 in San Jose and a Japan edition just wrapped in Tokyo. AAIF is not drip-feeding interest; it is standing up the conference circuit, the credential, and the governance story all at once, because enterprises deploying agents need all three before they sign off on production rollouts.

Why half the exam is execution and security

Start with the adoption curve, because the scale explains the urgency. MCP went from an Anthropic open-source release in November 2024 to the industry's default agent-tool standard, donated to the Linux Foundation's Agentic AI Foundation in December 2025 alongside OpenAI's AGENTS.md and Block's Goose. By early 2026, more than ten thousand MCP servers were indexed across public registries, SDK downloads ran at roughly 97 million per month, and Gartner was projecting that 40% of enterprise applications will include task-specific AI agents by the end of 2026, up from under 5% in 2025.

Security has not kept pace. Roughly a quarter of MCP servers still run with no authentication, independent scans find a majority of public servers carry exploitable risk with only a small fraction using OAuth by default, and security vendors have built entire product lines — Manifold's Manifest index alone scores 7,700 MCP servers — around answering "which of the servers our agents touch are dangerous." That gap between adoption and hardening is exactly what a 24% Security & Governance domain is pricing in.

The incident record makes the abstract concrete. In July 2026, researchers found that Ruflo — an AI multi-agent orchestration platform with more than 66,500 GitHub stars — shipped a default docker-compose deployment exposing its MCP bridge endpoints (POST /mcp and POST /mcp/:group) to the network with no authentication. The flaw, CVE-2026-59726, put 233 tools — shell command execution, database operations, agent management, memory storage — one unauthenticated tools/call away from anyone on the network. A single call to terminal_execute yielded a shell in the bridge container, exposed LLM provider API keys, and allowed poisoning the AgentDB learning store that shapes future model behavior. This is Interactions & Execution meeting Security & Governance at their worst: the protocol primitives worked exactly as designed, and that was the problem.

Breakage is not only a server-side story. A 2026 peer-reviewed study applied STRIDE and DREAD threat modeling to MCP client implementations, catalogued more than 50 threats, and tested seven major MCP clients against four tool-poisoning attack vectors — malicious instructions smuggled inside tool descriptions and results. Attack success ranged from 0% on the best-hardened client to high rates elsewhere, which is the client-side version of the same lesson: the trust boundary between "tool output" and "instruction the agent obeys" is where MCP deployments get compromised. Add the NSA's security design guidance for MCP-driven automation, which treats arbitrary code execution through agent tool paths as a high-severity design concern, plus the regulatory clock — the EU AI Act's high-risk obligations became enforceable in August 2026 and reach straight down to the tool-calling layer — and the pattern is unmistakable. Population scans, a flagship incident, client-side research, and state-level guidance all point at the same two exam domains — the half of the MCPA that is execution and security.

A domain-by-domain production checklist for your own MCP server

The exam tests people, but its domain split doubles as a readiness checklist for servers. If you run — or plan to run — an MCP server that lets agents deploy code, roll back releases, and read logs, here is what each domain demands you demonstrate before agents graduate from demo to operator:

MCPA domain (weight)What your server must prove
Fundamentals (16%)Pin and negotiate a spec version; handle capability negotiation and protocol upgrades without breaking existing clients.
Architecture & Components (14%)Separate host, client, and server concerns cleanly; know exactly which component enforces auth, and never rely on the client to police itself.
Interactions & Execution (26%)Scope every tool to least privilege; validate all inputs server-side; log every tools/call with caller identity; gate destructive tools (deploy, rollback, delete) behind explicit approval or elicitation.
Security & Governance (24%)OAuth 2.1 with PKCE on every network-exposed endpoint — no unauthenticated listeners; treat tool descriptions and tool results as untrusted input; sign and version the tool surface so silent definition mutations are detectable.
Use Cases & Ecosystem (20%)Operate the server as production infrastructure: health checks, rate limits, upgrade runbooks, and an incident story for "an agent did something surprising at 3 a.m."

Two rows deserve emphasis because they are where self-hosted servers most often fail. The Interactions & Execution row is the approval-gate row: a deploy tool that any connected agent can invoke with no human in the loop is Ruflo's terminal_execute with a friendlier name. MCP's elicitation primitive exists precisely so a server can pause mid-call and ask a human (or a policy engine) before proceeding — use it for every irreversible action. The Security & Governance row is the "no unauthenticated listeners" row: stdio transports got away with ambient trust because the client and server shared a machine, but the moment a server speaks Streamable HTTP on a network, it needs OAuth 2.1 with discovery, short-lived tokens, and per-tool scopes. The exam's 24% weight is the industry telling you this is not optional hardening — it is the baseline.

What the exam can't certify

A multiple-choice exam, however well-weighted, certifies knowledge — not operations. Nobody fails the MCPA because their MCP server's OAuth issuer went down at 2 a.m., because a spec upgrade silently changed elicitation behavior, or because two tenants' agents share one server and one of them is adversarial. Yet those are the failures that page you.

This is the honest limit of the credential, and the reason the Use Cases & Ecosystem domain stops at 20%: the exam can test that you know what a trust boundary is, but it cannot test whether your on-call rotation knows what to do when one is crossed. Upgrade discipline (pinning spec versions, testing clients against new server behavior), drift discipline (the deployed tool surface matching the reviewed one), tenant isolation on shared infrastructure, and audit trails an incident review can actually reconstruct — all of that stays platform work, certified or not.

That platform work is also where self-hosting earns its keep. An MCP server that fronts your deploy pipeline is the most privileged tool your agents will ever touch: it deserves the same treatment as the pipeline itself — owned machines, declarative configuration, versioned releases, and logs you control. A certificate on the wall doesn't replace any of that, but it does tell you what "any of that" includes. Read the syllabus as a spec, build to it, and the exam becomes a lagging indicator of a server that was already production-grade.

Certification as a maturity signal

Step back and the MCPA looks like every infrastructure certification that came before it: CKA didn't arrive when Kubernetes was new, it arrived when Kubernetes was load-bearing. A vendor-neutral exam with half its weight on execution and security is what a protocol gets when it graduates from "clever integration trick" to "critical infrastructure people get paged for." Expect MCPA to become hiring shorthand within a year — and expect the servers that can't pass its syllabus, even informally, to be the ones in the next incident writeup.

The move for platform teams is straightforward: audit your MCP servers against the five domains this quarter, close the authentication and approval-gate gaps first, and treat the exam's existence as the deadline it is. The protocol grew up this month. Your servers should too.

Running agents against infrastructure you own changes the MCP security calculus: the tool surface, the credentials, and the audit logs all live on your machines. Bex.co is the open-source, AI-native Render alternative — push a git repo, get a running HTTPS service on machines you own. Star the repo on GitHub or deploy your first app today.

Related articles

Give your agents a chain backend

Autonomous agents hit RPC endpoints very differently than people do. See what bex router handles on their behalf.

Read the agents guide