docs: refresh mcp config refs

This commit is contained in:
Peter Steinberger
2026-04-04 16:15:11 +01:00
parent 89535f9313
commit 6067fe59d8

View File

@@ -432,11 +432,11 @@ Launches a local child process and communicates over stdin/stdout.
Connects to a remote MCP server over HTTP Server-Sent Events.
| Field | Description |
| ------------------- | ---------------------------------------------------------------- |
| `url` | HTTP or HTTPS URL of the remote server (required) |
| `headers` | Optional key-value map of HTTP headers (for example auth tokens) |
| `connectionTimeout` | Per-server connection timeout in ms (optional) |
| Field | Description |
| --------------------- | ---------------------------------------------------------------- |
| `url` | HTTP or HTTPS URL of the remote server (required) |
| `headers` | Optional key-value map of HTTP headers (for example auth tokens) |
| `connectionTimeoutMs` | Per-server connection timeout in ms (optional) |
Example:
@@ -462,12 +462,12 @@ status output.
`streamable-http` is an additional transport option alongside `sse` and `stdio`. It uses HTTP streaming for bidirectional communication with remote MCP servers.
| Field | Description |
| ------------------- | ---------------------------------------------------------------- |
| `url` | HTTP or HTTPS URL of the remote server (required) |
| `transport` | Set to `"streamable-http"` to select this transport |
| `headers` | Optional key-value map of HTTP headers (for example auth tokens) |
| `connectionTimeout` | Per-server connection timeout in ms (optional) |
| Field | Description |
| --------------------- | -------------------------------------------------------------------------------------- |
| `url` | HTTP or HTTPS URL of the remote server (required) |
| `transport` | Set to `"streamable-http"` to select this transport; when omitted, OpenClaw uses `sse` |
| `headers` | Optional key-value map of HTTP headers (for example auth tokens) |
| `connectionTimeoutMs` | Per-server connection timeout in ms (optional) |
Example:
@@ -478,7 +478,7 @@ Example:
"streaming-tools": {
"url": "https://mcp.example.com/stream",
"transport": "streamable-http",
"connectionTimeout": 10000,
"connectionTimeoutMs": 10000,
"headers": {
"Authorization": "Bearer <token>"
}