From 67c8c867228a910d2076edd542a2d6f327b9f140 Mon Sep 17 00:00:00 2001 From: Wenyi Xu Date: Thu, 27 Nov 2025 03:44:59 +0800 Subject: [PATCH] [model-gateway][doc] Update transport terminology to protocol in README.md (#13872) Co-authored-by: Simo Lin --- sgl-router/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sgl-router/README.md b/sgl-router/README.md index d6d751b00..051c32487 100644 --- a/sgl-router/README.md +++ b/sgl-router/README.md @@ -246,12 +246,12 @@ servers: - name: "github" url: "https://api.github.com/mcp" token: "ghp_xxxxx" - transport: "sse" + protocol: "sse" required: false - name: "custom-tools" url: "https://tools.example.com/mcp" - transport: "streamable" + protocol: "streamable" required: true pool: @@ -276,7 +276,7 @@ inventory: - `command` + `args`: For STDIO transport (local process execution) - `url`: For SSE or Streamable transports (HTTP/HTTPS endpoints) - `token`: Optional authentication token for HTTP-based transports -- `transport`: Protocol type (`"sse"` or `"streamable"`; STDIO is inferred from `command`) +- `protocol`: Protocol type (`"sse"` or `"streamable"`; STDIO is inferred from `command`) - `required`: If `true`, router fails to start if server is unreachable (default: `false`) - `envs`: Environment variables for STDIO processes (optional) - `proxy`: Per-server proxy override (set to `null` to bypass global proxy) @@ -312,14 +312,14 @@ envs: name: "remote-sse" url: "https://mcp.example.com/events" token: "bearer-token" -transport: "sse" +protocol: "sse" ``` **Streamable** (Bidirectional Streaming): ```yaml name: "streaming-tools" url: "https://mcp.example.com/stream" -transport: "streamable" +protocol: "streamable" required: true ```