0Pricing
MCP Academy · レッスン

機能をネゴシエーションする

双方がサポートしている機能を確認します。

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

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

Not Everyone Speaks Every Feature

MCP is rich, but no client or server supports it all. So at startup both sides negotiate which features they have, like two devices agreeing on what they can do. 🤝

It Happens at Initialize

This deal is struck during the initialize handshake, the very first exchange. After it, each side knows what the other offers and what is off the table.

Two Capability Bundles

The client announces its clientCapabilities and the server announces its serverCapabilities. Each bundle is just a map of feature flags and small options.

What a Server Declares

A server lists what it provides: things like tools, resources, and prompts. If a key is absent, clients know not to expect that primitive from you.

"capabilities": { "tools": {}, "resources": {} }

What a Client Declares

A client lists features it can offer back, such as roots, sampling, and elicitation. That is how your server learns it may even ask for roots at all.

"capabilities": { "roots": {}, "sampling": {} }

Sub-flags Add Detail

A capability can hold extra options. For example, roots may carry listChanged: true, meaning the client will notify you when its root set changes.

"roots": { "listChanged": true }

Absence Means No

The rule is simple: if a capability is missing, treat the feature as unavailable. Never call something the other side never promised it could do.

Version Comes First

Alongside features, both sides send a protocolVersion. They must agree on a shared version, or the session is rejected before any real work begins.

The SDK Does the Heavy Lifting

You rarely build these maps by hand. The Python SDK fills in your server capabilities from the tools and resources you registered, then exchanges them for you.

Read the Other Side's Flags

After init, you can inspect the client capabilities your session captured. That check is exactly what guards an optional call like list_roots.

caps = ctx.session.client_params.capabilities

Negotiate Once, Trust Throughout

Capabilities are settled at startup and hold for the session. You can rely on them for the connection's life without re-negotiating on every call.

Quick Check

Recall when and how features get agreed on.

Recap: The Capability Deal

At initialize, client and server swap capability maps and a protocol version. A missing flag means unsupported, and the SDK builds and reads these for you. 🎯

よくある質問

「機能をネゴシエーションする」レッスンは無料ですか?

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

「機能をネゴシエーションする」で何を学びますか?

双方がサポートしている機能を確認します。 ブラウザで直接実行するハンズオンコードでMCP Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

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

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

「機能をネゴシエーションする」レッスンにはどのくらい時間がかかりますか?

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

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

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

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

  1. Rootsがサーバーに伝えること
  2. クライアントのRootsをリクエストする
  3. 機能をネゴシエーションする
  4. クライアントの境界を尊重する
← MCP Academyに戻る