Explorar com o Inspetor MCP
Navegue visualmente pelas ferramentas, recursos e prompts.
Explorar com o Inspetor MCP é uma aula grátis de MCP Academy no CoddyKit. Esta é a aula 3 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de MCP Academy, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de MCP Academy inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em 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. ✅
Perguntas Frequentes
A aula “Explorar com o Inspetor MCP” é grátis?
Sim — o texto completo de “Explorar com o Inspetor MCP” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de MCP Academy, atualize para CoddyKit PRO. O curso de MCP Academy inclui 4 aulas no total.
O que vou aprender em “Explorar com o Inspetor MCP”?
Navegue visualmente pelas ferramentas, recursos e prompts. Você pratica MCP Academy com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar MCP Academy?
Nenhuma experiência prévia é necessária. MCP Academy no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 3 de 4.
Quanto tempo leva a aula “Explorar com o Inspetor MCP”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de MCP Academy?
Sim. Cada aula de MCP Academy inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- Como funciona o transporte stdio
- Integrá-lo ao Claude Desktop
- Explorar com o Inspetor MCP
- Depurar um servidor que não inicia