From 0a28d71ccaa0591dd8cb724b5a6c64e84d67ef95 Mon Sep 17 00:00:00 2001 From: Chang Luo <33987852+luochang212@users.noreply.github.com> Date: Sat, 31 May 2025 00:11:10 +0800 Subject: [PATCH] Fix typo: Replace 'two' with 'three' in /docs/mcp.md (#757) The documentation in `docs/mcp.md` listed three server types (stdio, HTTP over SSE, Streamable HTTP) but incorrectly stated "two kinds of servers" in the heading. This PR fixes the numerical discrepancy. **Changes:** - Modified from "two kinds of servers" to "three kinds of servers". - File: `docs/mcp.md` (line 11). --- docs/mcp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mcp.md b/docs/mcp.md index 2cd0aad..76d1420 100644 --- a/docs/mcp.md +++ b/docs/mcp.md @@ -8,7 +8,7 @@ The Agents SDK has support for MCP. This enables you to use a wide range of MCP ## MCP servers -Currently, the MCP spec defines two kinds of servers, based on the transport mechanism they use: +Currently, the MCP spec defines three kinds of servers, based on the transport mechanism they use: 1. **stdio** servers run as a subprocess of your application. You can think of them as running "locally". 2. **HTTP over SSE** servers run remotely. You connect to them via a URL.