loading…
Search for a command to run...
loading…
Model Context Protocol — Anthropic's open standard for AI agents. Explained simply.
▸ TL;DR
MCP = USB-C for AI. One protocol, any client + any tool server. The simplest way to start: open Unyly and install an MCP in one click.
Open Unyly catalogMCP (Model Context Protocol) is an open standard that lets AI models (like Claude) talk to external tools and data through one unified protocol. Anthropic released it in late 2024 and it has quickly become the de facto standard.
Analogy: think USB-C for AI. Used to be every device had its own cable; now one port for everything. Same with MCP — one connector between AI model (Claude, Cursor, VS Code) and any external tool (GitHub, Notion, Slack, databases).
The AI agent in the client sees a list of tools from the MCP server and can call them. Server does the work, returns the result. That\'s it.
Function calling is a specific LLM provider\'s API (OpenAI, Anthropic). You write code describing tools in their format and wire them to the LLM directly.
MCP is an open protocol. You write the server once and it works with any MCP client. No vendor lock-in.
LangChain is a framework you embed in your Python/JS code. Good for custom agents, but requires development work.
MCP is a runtime protocol. End-user clients (Claude Desktop) talk to tool servers directly, no framework integration needed. Simpler, language-agnostic, better for consumer AI apps.
The simplest path:
Alternatively, you can hand-edit claude_desktop_config.json, but that\'s for enthusiasts only. Full install guide.