0Pricing
MCP Academy · レッスン

読み込みとツール一覧を確認する

ツールが表示され、呼び出し可能になっていることを確認します。

「読み込みとツール一覧を確認する」はCoddyKit上の無料MCP Academyレッスンです。 これはレッスン4/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはMCP Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 MCP Academyコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

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! 🎉

よくある質問

「読み込みとツール一覧を確認する」レッスンは無料ですか?

はい。「読み込みとツール一覧を確認する」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、MCP Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 MCP Academyコースには全4レッスンが含まれています。

「読み込みとツール一覧を確認する」で何を学びますか?

ツールが表示され、呼び出し可能になっていることを確認します。 ブラウザで直接実行するハンズオンコードでMCP Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

MCP Academyを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのMCP Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン4/4です。

「読み込みとツール一覧を確認する」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このMCP Academyレッスンでコードを書いて実行できますか?

はい。すべてのMCP Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. FastMCPインスタンスを作成する
  2. Helloツールを追加する
  3. stdioでサーバーを実行する
  4. 読み込みとツール一覧を確認する
← MCP Academyに戻る