El host: Claude Desktop e IDE
La aplicación de IA que el usuario abre y con la que realmente conversa.
El host: Claude Desktop e IDE es una lección gratuita de MCP Academy en CoddyKit. Esta es la lección 1 de 4. Puedes leer la lección completa abajo gratuitamente — luego la practicas en el navegador con un editor de código integrado y un tutor de IA 24/7. Forma parte de la ruta de aprendizaje de MCP Academy, y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de MCP Academy incluye 4 lecciones en total.
Partes de esta lección aún no han sido traducidas y se muestran en inglés.
Meet the Host
The host is the AI app a person actually opens and talks to. Think Claude Desktop or an AI-powered code editor. It is the front door to everything MCP.
The Host Owns the Model
A host is the only part of MCP that holds a connection to the language model. Servers never talk to the model directly, only the host does.
Claude Desktop as a Host
Claude Desktop is the classic MCP host. You chat in it, and behind the scenes it can reach out to any servers you have connected.
IDEs Are Hosts Too
Coding tools like an AI-enabled IDE are also hosts. They embed a model and let it use MCP servers to read files or run tasks for you.
The Host Decides What Connects
You, through the host, choose which servers are trusted. The host reads a config file listing the servers it should launch and connect to.
A Host Config Entry
In Claude Desktop, each server lives under mcpServers in a JSON config. One key per server, with the command that starts it.
{
"mcpServers": {
"weather": { "command": "python", "args": ["server.py"] }
}
}The Host Holds the Permissions
Because the host sees the user, it enforces consent. Before a tool runs, the host can pause and ask you to approve the action.
One Host, Many Servers
A single host can wire up many servers at once. The host blends all their tools together into one capable assistant for you.
The Host Is Not the Server
Do not confuse them. The host is the user-facing app with the model; a server is a separate program that simply offers capabilities.
Hosts Launch Local Servers
For local setups, the host usually starts each server as a child process. It runs the command you configured and keeps it alive while you work.
Why the Host Matters
The host is where context, model, and user meet. Understanding it first makes the client and server roles far easier to follow.
Quick Check
Identify which MCP role holds the model connection.
Recap
You met the host: the AI app like Claude Desktop or an IDE that holds the model, reads server config, and asks for your consent. Nicely done!
Preguntas frecuentes
¿La lección «El host: Claude Desktop e IDE» es gratis?
Sí — el texto completo de «El host: Claude Desktop e IDE» es gratis para leer aquí en la web. Para practicarla de forma interactiva (editor de código integrado y tutor de IA 24/7) y desbloquear el resto del curso de MCP Academy, actualiza a CoddyKit PRO. El curso de MCP Academy incluye 4 lecciones en total.
¿Qué aprenderé en «El host: Claude Desktop e IDE»?
La aplicación de IA que el usuario abre y con la que realmente conversa. Practicas MCP Academy con código real que ejecutas directamente en el navegador, y un tutor de IA 24/7 responde tus preguntas mientras trabajas en la lección.
¿Necesito experiencia previa para empezar MCP Academy?
No se requiere experiencia previa. MCP Academy en CoddyKit está estructurado para principiantes hasta estudiantes avanzados, así que puedes empezar aquí o desde el inicio y avanzar a tu ritmo. Esta es la lección 1 de 4.
¿Cuánto tiempo toma la lección «El host: Claude Desktop e IDE»?
La mayoría de las lecciones de CoddyKit toman alrededor de 5–10 minutos. Cada una es compacta e interactiva, así que avanzas constantemente y retomas exactamente por donde dejaste en la web y la app.
¿Puedo escribir y ejecutar código en esta lección de MCP Academy?
Sí. Cada lección de MCP Academy incluye un editor de código integrado, así que escribes y ejecutas código real directamente en tu navegador y obtienes retroalimentación instantánea de IA — sin configuración local necesaria.
Todas las lecciones de este curso
- El host: Claude Desktop e IDE
- El cliente: un enlace por servidor
- El servidor: donde viven las herramientas
- Seguir una solicitud de principio a fin