Bible Network Crypto DeFi Onchain RWA AI Agent Stablecoin Chain SAFU CryptoTax DeFAI AGI Claude Me Claude Skill Claude Design Claude Cowork
Independent Media
Not affiliated with any project
Exploring the Frontier of AI Intelligence
claude-me.com
LATEST
Cutting API Costs With Prompt Caching: An Overlooked Setting That Actually Saves Money  ·  Your First Claude Code Project: A Complete Walkthrough From Zero  ·  Anthropic's Responsible Scaling Policy: A Safety Framework That Tightens Automatically as Model Capability Grows  ·  When to Actually Use Extended Thinking: Not Every Question Needs Claude to Slow Down  ·  Claude Skills vs. Projects: What's Actually Different, and How I Decide Which to Use  ·  Anthropic's Model Welfare Research: What a Company Does If Claude Might Have Some Degree of Moral Status
Glossary · MCP Tools

MCP (Model Context Protocol)

MCP Tools 新手

30-Second Version · For the impatient
An open standard launched by <a href="/en/glossary/core-concepts/anthropic/">Anthropic</a> letting AI models connect to external tools and data sources in a unified way. Before MCP, every AI application needed to write its own integration code for different tools; with MCP, developers only need to build one "<a href="/en/glossary/mcp-tools/mcp-server/">MCP Server</a>" and any MCP-supporting AI client (like <a href="/en/glossary/claude-tools/claude-desktop/">Claude Desktop</a>) can use it directly. Analogy: MCP is like USB for the AI world — same interface, any device can plug in.
Full Explanation +
01 · What is this?

MCP is an open standard Anthropic launched in November 2024, solving a fundamental AI tool integration problem: before MCP, if you wanted Claude to read your Google Drive files, developers had to write Google Drive API integration code themselves; if you also wanted Claude to connect to Slack, another separate integration code was needed. Every tool, every AI application required dedicated integration code — extremely inefficient.

How MCP solves this: MCP defines a standard "conversation protocol" standardizing communication between AI clients (like Claude Desktop) and tool providers (MCP Servers). As long as you build an MCP-compliant Server, any MCP-supporting AI client can use it directly.

Three roles: MCP Client — the AI side that uses tools (Claude Desktop, VS Code Claude extension); MCP Server — the service side that provides tools (Google Drive MCP Server, GitHub MCP Server); MCP Protocol — the standard format for Client-Server communication, similar to how HTTP is the communication standard for web pages.

02 · Why does it exist?

How can regular users start using MCP? Can you use it without knowing programming?

You can use MCP without programming — the key is Claude Desktop + ready-made MCP Servers:

Step 1: Install Claude Desktop. claude.ai provides Mac and Windows desktop apps, free download.

Step 2: Enable MCP Servers. Claude Desktop has a configuration file (claude_desktop_config.json); add settings for the MCP Servers you want to use. Most-used ready-made Servers: local file system MCP (official), Google Drive MCP (official), GitHub MCP (official).

Step 3: Use in Claude Desktop. Once configured, in Claude Desktop conversation you can say "open my desktop folder, find last week's sales report, summarize it" and Claude can directly access and operate your files.

No-code scope: using Anthropic official or community ready-made MCP Servers requires zero code — just add a few lines of JSON to the config file.

Code-required scope: building custom MCP Servers (connecting internal company systems) or modifying existing MCP Server functionality requires Python or TypeScript programming.

03 · How does it affect your decisions?

What are the main Servers currently in the MCP ecosystem? What can each do?

The MCP ecosystem grew rapidly in 2024-2026. Current ready-made Server categories:

Official Anthropic Servers (most stable and reliable): local file system, Google Drive, GitHub, Slack, PostgreSQL/SQLite.

Active community Servers: Notion (read/write Notion pages and databases), Jira (query and create issues), Figma (read design structure), Brave Search (web search).

Rapidly growing categories: various SaaS tools (Salesforce, HubSpot, Asana), industry-specific tools (legal, medical, financial data services), various databases and analytics tools.

Good place to find ready-made Servers: awesome-mcp-servers repository on GitHub, continuously updated.

04 · What should you do?

What's the relationship between MCP and Claude's Tool Use? Are they the same thing?

Tool Use (Claude API): lets developers define tools in API calls (name, description, input format); Claude decides when to call which tool and with what parameters. The underlying API mechanism for Claude 'using tools,' not dependent on any particular tool standard.

MCP: a standardized tool connection protocol. MCP defines how AI clients and tool providers communicate, making tool deployment and usage more standardized. Claude Desktop connects to MCP Servers via MCP; MCP Servers expose tools to Claude via the Tool Use mechanism.

Relationship: MCP is a higher-level abstraction built on Tool Use. Tool Use is Claude's "capability to use tools"; MCP is the "standardized connection interface for tools." Like USB is a device connection standard (MCP) while the underlying power transmission mechanism is the foundational infrastructure (Tool Use).

Practical meaning: if using only claude.ai interface, MCP (via Claude Desktop) is the simplest way to extend Claude's capabilities. If developing with the API, you can directly use Tool Use to define any tools, or use existing tool Servers through MCP.

Real-World Example +

A content creator wanting to use MCP so her Claude Desktop can directly access her work documents — illustrating how MCP changes her daily workflow:

Before MCP: she manages article outlines and research notes in Notion, stores finished articles in Google Drive. Every time she needs Claude's help: open Notion, copy outline → paste into Claude → have Claude write a draft from the outline → copy the draft → return to Notion or Google Docs to organize. This copy-paste workflow happens 15-20 times daily, 2-3 minutes each, totaling 30-60 minutes of inefficient operations.

After enabling MCP: she configures Notion MCP Server and Google Drive MCP Server in Claude Desktop. Now she directly says in Claude Desktop: "open the 'June travel article' outline in Notion, write a 1,200-word draft based on this outline, then save the draft to the 'Article Drafts' folder in Google Drive." The entire process is completed autonomously by Claude; she does no copying.

Result: the workflow drops from 30-60 minutes of inefficient operations to 5 minutes of review and refinement. She estimates saving 3-4 hours per week.

Common Misconceptions +
✕ Misconception 1
× Misconception 1: MCP is only for engineers; regular users have no way to use it. Using ready-made MCP Servers requires zero programming. You only need: install Claude Desktop; add a few lines of JSON to the config file (configuring the MCP Servers you want to use); then in conversation Claude can directly access your Google Drive, Notion, local files. The few config lines in the JSON file can be completed by copy-pasting from Anthropic's documentation examples — no need to understand any programming logic.
✕ Misconception 2
× Misconception 2: MCP lets Claude access all my data, creating security risks. MCP access scope is entirely under your control. In each MCP Server's configuration, you explicitly specify what it can access — for example, local file system MCP can be configured to only allow Claude to access a specific directory (like 'my articles folder'), not the entire hard drive. Google Drive MCP requires you to authorize a specific Google account, and only the authorized scope can be accessed. Security depends on your configuration — Claude doesn't automatically gain all access permissions.
The Missing Link +
Direct Impact

MCP's core trade-off: convenience of capability expansion vs configuration complexity and security considerations. With MCP, Claude's capability boundaries expand greatly — it can directly operate your files and systems. But each additional MCP Server adds another "scope of systems Claude can affect," requiring careful consideration of authorization scope and security settings. For individual users, configuring per minimum privilege principle (only give Claude access to data it genuinely needs) is the most balanced strategy. For enterprise deployment, more systematic security policies are needed — which tools can be used, which data can be accessed, who has authority to configure MCP — these require explicit standards before deployment.

Ask a Question
Please enter at least 10 characters
More Related Topics
Tool Use Mechanism Complete Breakdown: How AI Agents 'Act,' and Why This Design Determines Whether They Can Be Trusted
AI Agent Bible
An AI Agent's LLM doesn't actually execute any tool — it only outputs 'I want to do this' requests; your backend code does the real execution. This design is the foundation of all security: the execution layer is under your control, and security validation is added there. How well tools are designed determines whether an Agent can be trusted.
#automation#claude-code
How to Run Your First Crypto Agent: A Complete Beginner's Guide, and the Mistakes Most People Make
AI Agent Bible
The most common mistake running your first Crypto Agent isn't wrong code — it's giving the Agent too much authorization from the start. Real main wallet, no amount limits, skipping testnet: all three together is a recipe for regret. Read first, test next, real money last.
#automation#claude-code
What an Agent Task Really Costs: A Complete Cost Structure Breakdown, and Why Most People Underestimate It
AI Agent Bible
An auto-rebalancing DeFi Agent can cost $50–300 per month — but most people only count LLM API fees, forgetting tool call costs, Gas fees, and the fact that Gas can be 100x normal during network congestion. The Agent's gains must cover all three cost layers. Otherwise it's just a more expensive way to automate losses.
#automation#claude-code
What Is an On-Chain Agent? It Differs from Every AI Tool You've Used in One Key Way
AI Agent Bible
An on-chain Agent differs from every AI tool you've used in one thing: it can self-sign on-chain transactions and operate crypto protocols without your step-by-step confirmation. Your assets can be moved while you sleep — which is exactly why it's both powerful and dangerous.
#automation#claude-code