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
3 changes: 2 additions & 1 deletion sgl-router/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ servers:
- name: "filesystem"
command: "npx"
args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
protocol: "stdio"
required: false

- name: "github"
Expand Down Expand Up @@ -298,7 +299,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
- `protocol`: Protocol type (`"sse"` or `"streamable"`; STDIO is inferred from `command`)
- `protocol`: Protocol type (`"sse"`, `"streamable"`, or `"stdio"`)
- `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)
Expand Down
Loading