惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
B
Blog RSS Feed
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
D
Docker
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
C
Check Point Blog
The Cloudflare Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
量子位
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Vercel News
Vercel News
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
MCP Is More Useful as Context Distribution Than as RPC
synthaicode · 2026-06-26 · via DEV Community

Most discussions around MCP focus on tool calling.

That is natural.

When people first see MCP, the obvious use case is simple:

Let the AI call external tools.

A model can read a GitHub issue.
A model can query a database.
A model can update a file.
A model can call an API.

In that sense, MCP looks like an RPC layer for AI agents.

That is useful.
But I think it may not be the most important use of MCP.

The more interesting use is this:

MCP can distribute context, rules, skills, and operating contracts to AI clients.

In other words, MCP is not only a way for AI to call tools during work.
It can also be a way to define the working environment before the work starts.


The problem with RAG

RAG is usually used to answer this question:

What information might be relevant to this request?

The system searches documents, retrieves chunks, and gives them to the model.

This works well for many cases.
But it has structural limits.

RAG retrieves likely relevant information.
It does not necessarily define how the work should be done.

For team-level AI work, this is a problem.

A team does not only need information.
A team also needs shared rules.

For example:

  • What is the authoritative source?
  • What should be treated as unknown?
  • When should the AI stop?
  • When is human confirmation required?
  • What is the closure condition?
  • Which workflow should be used?
  • Which domain skill applies?
  • What evidence must be recorded?

RAG can retrieve documents that describe these rules.
But retrieval is not the same as governance.

A retrieved chunk is just context.
It is not necessarily an operating contract.


The problem with local prompts

Many teams try to solve this with prompts.

They write instructions like:

Follow our coding rules.
Use this design document.
Ask questions when unclear.
Do not make risky changes.

This helps, but it does not scale well.

Each developer may have a different local prompt.
Each AI client may load a different file.
Each repository may contain a slightly different version of the rules.
Some people may forget to update their instructions.
Some people may not load the correct context at all.

As a result, the quality of AI output depends too much on the individual user.

One developer gets good output because they know how to explain the domain.
Another developer gets poor output because they do not know which context matters.

That is not a team-level system.
That is individual prompt craftsmanship.


A different way to use MCP

What if MCP is used not only for tool calls, but also for startup context?

At session start, the AI client calls a startup function.

That function returns:

  • access policy
  • authoritative context source
  • available skills
  • workflow catalog
  • unknown handling rules
  • closure rules
  • tool contracts
  • document resolvers

Now the model does not merely have access to tools.
It starts inside a governed context.

This changes the role of MCP.

RPC-style MCP:

The model calls tools during work.

Context-distribution MCP:

The model receives the rules of work before work starts.

That difference is important.


Why startup context matters

If an MCP server exists, that does not mean the model will use it.

The model has to know that MCP is not optional background infrastructure.
It has to know that MCP is the authoritative source for the session.

This requires a client-side bootstrapping rule.

For example:

At session start, if the project MCP server is configured, call get_startup_context first and treat the returned access policy as authoritative.

This is a small rule, but it changes the behavior of the system.

Without it, the AI may try to answer from memory, local files, or partial context.
With it, the AI first asks the MCP server how the work should be governed.

That is the difference between “MCP is available” and “MCP controls the working context.”


From knowledge retrieval to skill distribution

This also changes how domain knowledge can be distributed.

In many organizations, domain knowledge is held by experienced people.

They know:

  • which documents matter
  • which rules are obsolete
  • which terms have special meaning
  • which changes are risky
  • which assumptions are forbidden
  • which checks are required before completion

If this knowledge is only written as documentation, every user must read and understand it.

If this knowledge is embedded into prompts, every user must keep their prompt updated.

But if this knowledge is packaged as MCP-accessible skills, the distribution model changes.

The skill author maintains the domain skill centrally.
The users consume it through MCP.
The AI client receives the same skill definition at runtime.

This separates two roles:

  • the people who define the skill
  • the people who use the skill

That separation matters.

It means a senior engineer can define a domain-specific skill once.
Then multiple developers can use that same skill through their AI clients.

The goal is not only better answers.
The goal is more consistent output across the team.


Local checkout should not be required

Another advantage is portability.

If every user needs a local checkout of the governance repository, the system becomes fragile.

Local copies become stale.
Different users may have different versions.
Setup becomes heavier.
Onboarding becomes slower.
Updates are harder to propagate.

With MCP-based context distribution, the local client does not need the full governance repository.

The local client only needs a bootstrapping instruction and MCP access.

The authoritative definitions stay on the MCP server.

The AI resolves documents, skills, workflows, and contracts through named MCP tools.

This makes the governance layer portable.

The user does not carry the entire context system locally.
The user connects to it.


RAG vs MCP context distribution

The difference can be summarized like this.

RAG answers:

What information might be relevant?

MCP context distribution answers:

What context and rules must govern this work?

RAG retrieves knowledge fragments.
MCP can expose authoritative context.

RAG is useful for answering questions.
MCP can be useful for controlling work.

RAG is often probabilistic retrieval.
MCP can provide named resolvers, catalogs, policies, and contracts.

RAG can tell the model something.
MCP can tell the model how it is allowed to proceed.

This is why I think MCP as context distribution may be more important than MCP as RPC.


Unknowns should be part of the runtime

One example is unknown handling.

In normal AI usage, uncertainty often disappears into fluent text.

The model may say something plausible.
The user may not notice that an important assumption was unresolved.

For serious work, unknowns should not be hidden.

An unknown should be a first-class runtime signal.

For example:

  • the model does not know a required fact
  • the model does not understand a requirement
  • the model lacks a domain rule
  • the model cannot verify an assumption
  • the model needs human confirmation before proceeding

If unknown handling is only a prompt instruction, it is weak.

But if unknown handling is part of the MCP-distributed operating contract, every skill and workflow can share the same rule.

The model can be required to record unknowns.
Closure can be blocked when unresolved unknowns remain.
Risky changes can require escalation.

This is not ordinary retrieval.
This is governance.


MCP as an operating layer for AI work

I now see MCP as something broader than a tool-calling protocol.

It can become an operating layer for AI-assisted work.

Not an operating system in the traditional sense, but a layer that defines:

  • what context is authoritative
  • which skills are available
  • which workflows apply
  • how uncertainty is handled
  • when work must stop
  • how closure is judged
  • what evidence must be recorded

That is much more than RPC.

RPC lets the model do things.
Context distribution tells the model how to work.

For individual experiments, this may not matter much.

For teams, it matters a lot.

Because teams do not only need powerful AI.
They need repeatable AI-assisted work.


The key idea

The key idea is simple:

Do not only give AI tools.
Give AI a governed working context.

MCP makes this possible because it can expose not only actions, but also resources, prompts, catalogs, resolvers, and contracts.

This suggests a different direction for MCP-based systems.

Instead of asking:

What tools can the AI call?

We should also ask:

What context must the AI load before it starts?
What rules must govern the work?
What skills should be distributed to every user?
What should prevent unsafe or incomplete closure?

This may be where MCP becomes most valuable.

Not as an RPC layer for agents.
But as a portable context distribution layer for team-level AI work.