Skip to content
Closed
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
16 changes: 16 additions & 0 deletions docs/reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,22 @@ The [Model Context Protocol](https://modelcontextprotocol.io/introduction) is a
- `requestOptions`: Optional request options for `sse` and `streamable-http` servers. Same format as [model requestOptions](#models).
- `connectionTimeout`: Optional timeout for _initial_ connection to MCP server

For `sse` and `streamable-http` MCP servers, configure custom HTTP headers under `requestOptions.headers`:

```yaml title="config.yaml"
name: My Config
version: 1.0.0
schema: v1
mcpServers:
- name: My HTTP MCP Server
type: streamable-http
url: https://mcp.example.com
requestOptions:
headers:
X-API-Key: your-api-key
X-Client: continue
```

**Example:**

```yaml title="config.yaml"
Expand Down
Loading