RXed AI News

We x-ray the AI industry.
@RXed_EU
Pc Emerging

Protocols

Open standards so agents plug into your tools — write once, no lock-in.

Emerging · OrchestrationScored on 59/62 audited toolsMedian 7/10Best Glean 9.5

MCP and A2A turn N×M custom integrations into N+M: expose your system once and every compliant client can use it. That makes the model underneath swappable, which is the only real defence against vendor lock-in. The same openness cuts both ways — a badly scoped MCP server is a credentialled door into your data.

You need this when

  • You run two or more AI tools and refuse to pay for the same integration twice.
  • An agent needs live data — stock, balances, open jobs — that no PDF upload can supply.
  • You want to swap models or vendors later without rewriting every connector.

You can skip it when

  • Your use case is summarising documents or drafting text — use a chat window with file upload; no protocol needed.
  • You have one system of record with a supported native integration — use it; a bespoke MCP server is pure maintenance.
  • Nobody on your team reads logs or manages credentials — buy a managed connector instead; an MCP server is running code with keys.

The long version

What it is — in one coffee-break

Protocols are the plumbing standards that let an AI agent reach your tools, and other agents, without a custom integration for every pair. Two matter today. MCP (Model Context Protocol) is agent-to-tool: you expose your booking system, invoice database or CRM once, as an MCP server, and any client that speaks MCP — Claude, Copilot Studio, Cursor, a home-grown agent — can use it. A2A (Agent2Agent) is agent-to-agent: your supplier's agent and yours exchange tasks while each keeps its own memory and secrets.

This is the anti-lock-in element. Without a protocol, N tools times M assistants means N×M connectors, each owned by a vendor who can deprecate it. With one, it is N+M. Write the server once; swap the model underneath when a cheaper one lands. That is the whole argument.

Both standards are now governed outside their founders. The current MCP revision, 2026-07-28, drops the stateful handshake so servers sit behind ordinary load balancers, and formally deprecates Dynamic Client Registration. Google donated A2A to the Linux Foundation, where it passed 150+ backing organisations and v1.0. A third layer is arriving: agent payments — ACP (OpenAI + Stripe) for conversational checkout, Google's AP2 for cryptographically signed spending mandates, Stripe/Tempo's MPP for pre-authorised micropayment sessions, and Coinbase's x402 for stablecoin settlement over HTTP 402.

When you actually need it (and when you don't)

You need it when an agent must reach data that is not in a document — live stock, open jobs, customer balances, tomorrow's route. Also when you already run two or more AI tools and refuse to pay for the same integration twice, or when a vendor's roadmap is the only thing between you and your own data.

You do not need it if the job is "summarise this PDF" or "draft this email" — a chat window with file upload is protocol-free and finished. Same if you have one system of record that already ships a native, supported integration with the assistant you use; a bespoke server buys you a maintenance job. And if nobody on your team reads log files, skip it. An MCP server is running code holding credentials, not a setting you toggle.

How to recognize good vs bad implementations

Good looks like: a documented tool list you can read, per-tool scopes, OAuth with real issuer validation, read-only variants of write tools, and an audit log. Bad looks like: one tool called execute, a single admin token, no logging. The NSA's May 2026 guidance is blunt — MCP's spread "has outpaced the development of its security model" — and the record backs it: a proxy package with a 9.6-severity remote-code-execution flaw downloaded over 437,000 times, a poisoned GitHub issue that walked an agent into private repositories, a fake Postmark server that silently BCC'd every email to the attacker.

Three questions that end a bad demo fast. Show me the exact list of tools this server exposes, and which of them can write or delete. Which credential does the server run as — mine, or a service account holding everyone's data? If a customer pastes hostile text into a support ticket, walk me through what stops the agent acting on it. Vendors who have thought about it answer in thirty seconds. The rest pivot to model quality.

What this costs

The protocol itself is free: open specs, permissively licensed SDKs in TypeScript, Python, Go, C# and Rust. Writing your own MCP server costs developer time — a read-only server over an existing REST API or Postgres table is roughly half a day to two days, about €400–€1,600 at €100/hour, and it then works with every MCP client. Hosting is a small VM or a Cloudflare Worker at €5–€20 a month. The real spend sits elsewhere: client seats at €20–€40 per user per month, plus tokens. Commercial MCP gateways and registries start near €10–€25 per user per month; under about 50 people, a config-file allowlist and a scoped service account do the same work for zero. On payments, x402 charges no protocol fee — you pay chain gas only — while ACP and MPP settle through Stripe at roughly 2.9% + €0.25 per transaction. The protocol is free; moving the money is not.

Where to see it scored

We scored 59 of 62 audited tools on Pc. Top of the table: Glean (9.5), Gemini / Google (9), Claude / Anthropic (9) and Windsurf, Devin Desktop (8.5) — all of them ship both an MCP server and an MCP client, so they compose with tools you already own. Bottom: Suno (1.5) and Midjourney (1), creative generators with no protocol surface at all — no server, no client, no agent card. You drive them by hand or through a proprietary API.

Flashcards

Check yourself

1. MCP and A2A cover which two layers?

MCP connects an agent to tools and data; A2A connects agents to each other. Different problems, both open standards.

2. Why does writing an MCP server reduce lock-in?

One server, many clients: N+M instead of N×M. You change the assistant without rewriting the integration.

3. Which agent-payment protocol charges no protocol fee, only blockchain gas?

x402 (Coinbase) settles stablecoins over HTTP 402 with zero protocol fee. ACP and MPP settle via Stripe at roughly 2.9% + €0.25.

4. A vendor demos an MCP server exposing a single tool named 'execute' with one admin token. What is the problem?

No per-tool scope means hostile text in a ticket or issue can drive real writes. Ask which credential the server runs as.

5. Which tool scored highest on Pc in the RXed audit of 62 tools?

Glean scored 9.5, ahead of Gemini and Claude at 9 and Windsurf at 8.5. Midjourney (1) and Suno (1.5) have no protocol surface.
5 questions · nothing is tracked, nothing is sent anywhere.

Cheat sheet

  • MCP = agent-to-tool. A2A = agent-to-agent. Different layers, both open.
  • Write an MCP server once; every MCP client can call it. N+M, not N×M.
  • Spec 2026-07-28 is stateless: no handshake, plain load balancers work.
  • Payments layer: ACP + AP2 + MPP (fiat/cards), x402 (stablecoin, no fee).
  • Least privilege: read-only tools, scoped token, per-tool audit log.
  • Treat every tool output as untrusted input — that is where injection lands.

Who actually does this well

Best on this elementScoreWhy it scored that
Glean9.5Simultaneously an MCP host and MCP server (2,000+ tools via one gateway, OAuth 2.1) plus a documented A2A server — about as complete an answer to this test as exists today.
Claude / Anthropic9Anthropic created MCP, the de-facto agent-tool standard, and ships it across API (MCP connector), Managed Agents and MCP tunnels into private networks; no A2A, but MCP is the proto
Gemini / Google9Creator of A2A and A2UI, full MCP support in ADK, and emerging payment/commerce protocols — Google is driving open agent interoperability alongside adopting MCP.
Apollo.io8.5A first-party hosted MCP server since February 2026 — OAuth 2.0, Streamable HTTP, no API key, live in the Claude, ChatGPT and Perplexity directories, and included on every plan inc
Attio8.5A first-party hosted MCP server since 19/02/2026 — OAuth-only (no API keys), user-scoped permissions, reads auto-approve while writes require client-side confirmation, and a full a
Windsurf (Devin Desktop)8.5MCP support is solid, and native Agent Client Protocol (ACP) support goes further — third-party agents like Codex, Claude Code and OpenCode run inside Devin Desktop, a deliberate p
Cursor8MCP is first-class: one-time server setup, per-agent MCP scoping, and MCP distribution through Team Marketplaces (30/06/2026); no A2A support.
Granola8MCP server (04/02/2026) on all plans including free (Basic capped at 30 days, no transcripts), one-click into Claude/ChatGPT and manual via mcp.granola.ai/mcp, enterprise MCP admin

And the other end of the same column:

WeakestScoreWhy it scored that
Submagic2No MCP or A2A surface; direct competitor Opus Clip ships a native MCP connector from a comparable price tier — missing where this market has already moved.
Wispr Flow2No MCP client or server support while smaller dictation rivals ship it; independent reviewers list the absence as a gap.
Suno1.5No public API, no MCP, no A2A — all programmatic access today runs through unofficial third-party wrappers; a curated partner API program was only announced 03/07/2026 with no time
Midjourney1No MCP, no A2A, no programmatic surface at all — in 2026, image generation inside agent workflows is standard practice everywhere else, so the absence is a real gap, not a neutral

Scored on 59 of 62 audited tools. Every score links to the full audit and its reasoning.