From b3125d46054beb04128a5958a21ee0d706af0233 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 26 Mar 2026 04:03:59 +0900 Subject: [PATCH] [Doc] Align stdio with specification Follow-up to https://github.com/modelcontextprotocol/ruby-sdk/pull/262#discussion_r2957734483. --- examples/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/README.md b/examples/README.md index 2bebdcd8..71700e15 100644 --- a/examples/README.md +++ b/examples/README.md @@ -4,7 +4,7 @@ This directory contains examples of how to use the Model Context Protocol (MCP) ## Available Examples -### 1. STDIO Server (`stdio_server.rb`) +### 1. stdio Server (`stdio_server.rb`) A simple server that communicates over standard input/output. This is useful for desktop applications and command-line tools. @@ -15,9 +15,9 @@ $ ruby examples/stdio_server.rb {"jsonrpc":"2.0","id":0,"method":"tools/list"} ``` -### 2. STDIO Client (`stdio_client.rb`) +### 2. stdio Client (`stdio_client.rb`) -A client that connects to the STDIO server using the `MCP::Client::Stdio` transport. +A client that connects to the stdio server using the `MCP::Client::Stdio` transport. This demonstrates how to use the SDK's built-in client classes to interact with a server subprocess. **Usage:**