0Pricing
MCP Academy · 강의

요청, 응답과 알림

MCP가 하루 종일 주고받는 세 가지 메시지 형태를 배웁니다.

요청, 응답과 알림은(는) CoddyKit의 무료 MCP Academy 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 MCP Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. MCP Academy 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Three Shapes of Talk

Under the hood, MCP speaks JSON-RPC. Every exchange is just one of three message shapes, and once you know them the wire stops feeling like magic.

What Is a Request?

A request asks the other side to do something and expects an answer. It carries an id so the reply can be matched back to it later.

{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}

The Reply Comes Back

A response answers exactly one request. It echoes the same id, so the client always knows which question it is replying to.

{"jsonrpc": "2.0", "id": 1, "result": {"tools": []}}

Fire and Forget

A notification is a one-way heads-up. It looks like a request but has no id, so nobody sends a reply back.

{"jsonrpc": "2.0", "method": "notifications/initialized"}

The id Is the Tell

The presence of an id is the whole difference: with an id you owe a reply, without one you do not. That single field separates requests from notifications.

Both Sides Can Ask

JSON-RPC is symmetric, so MCP is too. The server can send requests to the client, not just the other way around. Both parties play both roles.

Result or Error, Never Both

Every response carries either a result or an error, never both. Success fills result; failure fills error. You always know which one to read.

Notifications Power Updates

MCP uses notifications for live signals like progress, logs, and list changes. No reply is needed, so they keep the conversation flowing freely.

Matching by id

Because each request carries a unique id, many calls can be in flight at once. Replies need not arrive in order; the id keeps everything paired.

A Tiny Round Trip

Picture a round trip: the client requests tools/list, the server answers with the same id, and then the client knows which tools exist.

Why Three Is Enough

These three shapes cover everything MCP needs: ask and wait, answer, or announce. That simplicity is why JSON-RPC was chosen for the protocol.

Quick Check

You spot a JSON-RPC message with no id field. What kind is it?

Recap: Three Shapes

You learned MCP's whole vocabulary: requests ask with an id, responses answer with that id, and notifications announce with no id at all. Three shapes, endless conversations.

자주 묻는 질문

“요청, 응답과 알림” 강의는 무료인가요?

네 — “요청, 응답과 알림” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 MCP Academy 강의 전체를 잠금 해제할 수 있습니다. MCP Academy 강의에는 총 4개의 강의가 포함되어 있습니다.

“요청, 응답과 알림”에서 뭘 배우나요?

MCP가 하루 종일 주고받는 세 가지 메시지 형태를 배웁니다. 브라우저에서 직접 실행하는 실습 코드로 MCP Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

MCP Academy을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 MCP Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.

“요청, 응답과 알림” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 MCP Academy 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 MCP Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 요청, 응답과 알림
  2. JSON-RPC 호출의 구조
  3. 초기화 핸드셰이크
  4. 전송 중 오류 읽기
← MCP Academy(으)로 돌아가기