0Pricing
MCP Academy · レッスン

エージェントフレームワーク内のMCP

MCP Serverをエージェントランタイムに組み込みます。

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

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

Agents Need Tools Too

An agent framework runs a loop: the model thinks, picks a tool, sees the result, repeats. MCP is a tidy way to feed it those tools.

One Connection, Many Tools

Instead of wiring each tool by hand, your agent connects to an MCP server once and instantly gains everything that server advertises.

Frameworks Speak MCP

Popular agent runtimes add MCP support so you can drop a server in as a tool source, no custom glue code per framework.

Discover, Then Use

At startup the framework asks the server to list tools, then exposes them to the model like any other callable in the loop.

tools = await session.list_tools()

The Loop Stays the Same

Your agent loop does not change much. MCP just supplies the tool definitions the model chooses from on each step.

Calling a Tool

When the model picks a tool, the framework forwards the call to the MCP server with call_tool and waits for the result.

result = await session.call_tool(
  "get_weather", {"city": "Rome"})

Mix Many Servers

An agent can attach several MCP servers at once, pooling a database server, a search server, and a files server into one toolbox.

Swap Tools Without Code

Because tools live behind servers, you can add or remove capabilities by changing config, not by rewriting the agent itself.

The Host Handles Plumbing

The framework acts as the host: it starts servers, manages connections, and translates between the model and MCP for you.

Why This Scales

One server can power many agents, and one agent can use many servers. That many-to-many reach is exactly what MCP was built for.

Keep Your Agent Logic

MCP does not own your agent. Your reasoning, planning, and memory stay in the framework; MCP only standardizes the tool layer.

Quick Check

How does MCP fit into an agent framework?

Recap

An agent framework connects to MCP servers, discovers their tools, and calls them inside its loop. Plug in capability, keep your logic. 🔌

よくある質問

「エージェントフレームワーク内のMCP」レッスンは無料ですか?

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

「エージェントフレームワーク内のMCP」で何を学びますか?

MCP Serverをエージェントランタイムに組み込みます。 ブラウザで直接実行するハンズオンコードでMCP Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

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

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

「エージェントフレームワーク内のMCP」レッスンにはどのくらい時間がかかりますか?

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

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

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

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

  1. MCPとFunction Callingの比較
  2. エージェントフレームワーク内のMCP
  3. A2Aによるエージェント間通信
  4. MCPのこれから
← MCP Academyに戻る