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
Eight Principles Straight From Anthropic: If Claude Keeps Getting Worse, the Problem Is Probably How You're Using It  ·  Claude Code Can Now 'Loop' Through Work on Its Own: Anthropic Releases Four Loop Mode Guide That Lets AI Run Entire Processes  ·  Claude Cowork Honest Review: Three Months Later — What Actually Saved Time, What Made Me Regret Automating It  ·  Two Major Stories to Open July: Claude Sonnet 5 Launches, Fable 5 Export Controls Lifted and Globally Restored  ·  What Is RAG: Why Claude Can't Read Your Company Intranet — And How to Fix That  ·  Claude Cowork Advanced Workflows: From 'Hand Off One Task' to 'Run an Entire Process' — Three Real-World Templates

mcp-tools

MCP Client
The "consumer side" of the MCP architecture — Claude itself, along with <a href="/en/glossary/claude-tools/claude-desktop/">Claude Desktop</a> and <a href="/en/glossary/claude-tools/claude-code/">Claude Code</a>, are all MCP Clients. They actively call tools provided by MCP Servers to complete tasks assigned by users.
新手
MCP (Model Context Protocol)
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.
新手
MCP Server
The service-side component in the <a href="/en/glossary/mcp-tools/mcp-protocol/">MCP (Model Context Protocol)</a> ecosystem responsible for "providing tools and resources." Developers implement in Python or TypeScript, defining three primitive types: Resources (readable data), Tools (executable functions), and Prompts (preset prompt templates), letting MCP Clients (like <a href="/en/glossary/claude-tools/claude-desktop/">Claude Desktop</a>) call these capabilities. Building custom MCP Servers is the core technology for connecting Claude to any external system.
進階
MCP Transport
MCP Transport is the spec defining how Claude and an <a href="/en/glossary/mcp-tools/mcp-server/">MCP Server</a> exchange messages. The two main options are stdio (standard input/output) and SSE/HTTP. stdio suits local connections on the same machine and is the simplest to configure; SSE/HTTP goes over the network and suits cloud deployments and team use. Which you pick depends on whether your server and Claude run on the same machine.
新手