Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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:**
Expand Down