0Pricing
MCP Academy · Aula

Confirmar carregamento e listagem das ferramentas

Verifique se sua ferramenta aparece e pode ser chamada.

Confirmar carregamento e listagem das ferramentas é uma aula grátis de MCP Academy no CoddyKit. Esta é a aula 4 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.

Does It Actually Work?

Your server runs, but how do you know it's healthy? Let's verify that it loads and that your tool shows up where clients can see it. 🔍

The Dev Command

The SDK ships a helper for this. Running mcp dev on your file launches the server with a visual inspector attached.

uv run mcp dev server.py

Meet the Inspector

That opens the MCP Inspector in your browser: a friendly panel for poking at your server without writing any client code.

Connect First

In the Inspector you click Connect. That runs the handshake; if it succeeds, your server loaded and is speaking MCP correctly.

Open the Tools Tab

Now switch to the Tools tab. This calls the protocol's list operation and shows every tool your server advertises.

See Your Tool Listed

You should spot your function there by name, like "hello" or "greet", alongside the description that came from its docstring.

Check the Input Schema

Click the tool and the Inspector shows its schema, the typed parameters FastMCP built from your hints. This is what the model reads.

Call It Live

Fill in any arguments and hit run. The Inspector invokes your tool and shows the exact result the model would receive back.

Empty List Is a Clue

If the Tools list is empty, your decorator probably didn't run. Make sure @mcp.tool() sits directly above the function.

Listing Under the Hood

That tab is just a UI over a real message: the client sends a tools/list request and your server replies with the catalog.

Inspect Resources Too

The Inspector isn't only for tools. It has tabs for resources and prompts too, so you can verify every capability your server exposes.

Quick Check

What does the Inspector's Tools tab actually do under the hood?

Recap

You launched mcp dev, connected in the Inspector, saw your tool listed, and even called it live. Your first server is real and verified. Congrats! 🎉

Perguntas Frequentes

A aula “Confirmar carregamento e listagem das ferramentas” é grátis?

Sim — o texto completo de “Confirmar carregamento e listagem das ferramentas” é 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 “Confirmar carregamento e listagem das ferramentas”?

Verifique se sua ferramenta aparece e pode ser chamada. 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 4 de 4.

Quanto tempo leva a aula “Confirmar carregamento e listagem das ferramentas”?

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

  1. Criar uma instância FastMCP
  2. Adicionar uma ferramenta Hello
  3. Executar o servidor com stdio
  4. Confirmar carregamento e listagem das ferramentas
← Voltar para MCP Academy