From 07fb0a8e567a1ab73158a537eeef3a334e5c88f6 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 23 Mar 2026 03:37:03 +0900 Subject: [PATCH] [Doc] Fix a typo in README.md The method name in the client feature list was `MCP::Client#read_resources` (plural), but the actual method is `MCP::Client#read_resource` (singular). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ac29be2..dfed355c 100644 --- a/README.md +++ b/README.md @@ -1051,7 +1051,7 @@ This class supports: - Tool invocation via the `tools/call` method (`MCP::Client#call_tools`) - Resource listing via the `resources/list` method (`MCP::Client#resources`) - Resource template listing via the `resources/templates/list` method (`MCP::Client#resource_templates`) -- Resource reading via the `resources/read` method (`MCP::Client#read_resources`) +- Resource reading via the `resources/read` method (`MCP::Client#read_resource`) - Prompt listing via the `prompts/list` method (`MCP::Client#prompts`) - Prompt retrieval via the `prompts/get` method (`MCP::Client#get_prompt`) - Automatic JSON-RPC 2.0 message formatting