MCP Serverが実際に行うこと
AIクライアント向けの機能を整理してまとめたものとして、サーバーの役割を理解します。
「MCP Serverが実際に行うこと」はCoddyKit上の無料MCP Academyレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはMCP Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 MCP Academyコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
A Bundle of Skills
An MCP server is a small program that bundles up capabilities and offers them to AI clients in one tidy package. 🎁
It Advertises What It Can Do
When a client connects, the server first advertises its capabilities. The model learns exactly what is on offer before using anything.
Tools: Actions
A tool is an action the model can take, like sending an email or running a query. Tools do things and return a result.
Resources: Data
A resource is read-only data the model can pull in for context, like a file or a record. Resources inform, they do not act.
Prompts: Templates
A prompt is a reusable instruction template the user can trigger, like a ready-made review request. It shapes how the model is asked.
Three Primitives, One Server
Tools, resources, and prompts are the three primitives a server can expose. Most servers mix and match the ones they need.
It Runs Real Code
When the model calls a tool, the server runs your actual code and hands back the output. The model decides; your server does the work.
@mcp.tool()
def add(a: int, b: int) -> int:
return a + bA Clean Boundary
The server is a clear boundary. Your logic and secrets live inside it, while the model only ever sees the capabilities you choose to expose.
Speaks the Protocol
The server talks to clients using MCP's shared protocol. That common language is what lets any compatible client connect.
Small and Focused
Good servers stay focused: one server for files, another for your database. Each is a neat bundle around a single domain.
You Are the Author
You decide what your server exposes and how it behaves. Building one means deciding which capabilities the AI gets to use. 🛠️
Quick Check
Match each primitive to what it provides.
Recap
An MCP server bundles capabilities and advertises them: tools to act, resources to read, and prompts to reuse, all over the shared protocol.
よくある質問
「MCP Serverが実際に行うこと」レッスンは無料ですか?
はい。「MCP Serverが実際に行うこと」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、MCP Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 MCP Academyコースには全4レッスンが含まれています。
「MCP Serverが実際に行うこと」で何を学びますか?
AIクライアント向けの機能を整理してまとめたものとして、サーバーの役割を理解します。 ブラウザで直接実行するハンズオンコードでMCP Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
MCP Academyを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのMCP Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。
「MCP Serverが実際に行うこと」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このMCP Academyレッスンでコードを書いて実行できますか?
はい。すべてのMCP Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- 問題:M×Nの連携
- AIにとってのUSB-CとしてのMCP
- MCP Serverが実際に行うこと
- 現在の実社会におけるMCP