Explorar con MCP Inspector
Explore visualmente herramientas, recursos y prompts.
Explorar con MCP Inspector es una lección gratuita de MCP Academy en CoddyKit. Esta es la lección 3 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.
A Window Into Your Server
Editing config and restarting is slow for testing. The MCP Inspector gives you a visual tool to poke at your server directly. 🔍
What the Inspector Is
The Inspector is an official web app that acts as a client. It connects to your server and lets you browse and call everything it exposes.
Launch It with npx
You don’t install anything permanently. Run it on demand with npx, and it opens a local web UI in your browser.
npx @modelcontextprotocol/inspector python server.pyOr Use the mcp CLI
If you use the Python SDK, the mcp dev command launches the very same Inspector wired to your server in one step.
mcp dev server.pyConnect Over stdio
The Inspector spawns your script just like a host would, talking over stdio. So you test the exact path a real client uses.
See the Tools Tab
Open the Tools tab to list every tool your server advertises, complete with its name, description, and expected arguments.
Call a Tool by Hand
Pick a tool, fill in its fields in the form, and hit run. You see the exact result the server returns, with no model in the loop.
Browse Resources
The Resources tab shows everything your server can serve. Click one to read its contents and confirm the URI resolves correctly.
Preview Prompts
Under Prompts you can fill in arguments and preview the exact messages your template produces before any user ever triggers it.
Read the Message Log
A built-in log pane shows raw JSON-RPC traffic in both directions. It is the fastest way to see what your server truly sent.
Reconnect After Edits
Changed your code? Hit reconnect in the Inspector to restart the server and reload its tools, far faster than restarting a full host.
Quick Check
Why is the MCP Inspector handy when developing a server?
Recap
You used the Inspector to list tools, call them by hand, browse resources and prompts, and watch the wire. Now let’s tackle servers that won’t start. ✅
Preguntas frecuentes
¿La lección «Explorar con MCP Inspector» es gratis?
Sí — el texto completo de «Explorar con MCP Inspector» 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 «Explorar con MCP Inspector»?
Explore visualmente herramientas, recursos y prompts. 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 3 de 4.
¿Cuánto tiempo toma la lección «Explorar con MCP Inspector»?
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
- Cómo funciona el transporte stdio
- Conectarlo a Claude Desktop
- Explorar con MCP Inspector
- Depurar un servidor que no inicia