Skip to content

Commit 3a9ba7b

Browse files
authored
Updates configuration for the Augment pre-release
1 parent fe167e0 commit 3a9ba7b

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

docs/configure-mcp.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,35 @@ Copy the MCP server configuration from the VS Code notification and paste it int
209209

210210
> Product release support coming soon once STDIO transport is added!
211211
212-
In the 0.491.0 Pre-Release.
212+
#### HTTP & SSE Support in `>0.491.0` Pre-Release.
213213

214-
To use HTTP streaming:
214+
Using the _Augment Settings_ view:
215+
216+
HTTP streaming:
215217

216218
- Click "Add HTTP MCP"
217219
- Name, add `mcp-wcai-http`
218220
- URL add `http://<host>:<port>/mcp`
219221

220-
To use SSE:
222+
SSE:
221223

222224
- Click "Add SSE MCP"
223225
- Name, add `mcp-wcai-sse`
224226
- URL add `http://<host>:<port>/sse`
227+
228+
Using `settings.json`:
229+
230+
```json
231+
"augment.advanced": {
232+
"mcpServers": {
233+
"mcp-wcai-http": {
234+
"type": "http",
235+
"url": "http://<host>:<port>/mcp"
236+
},
237+
"mcp-wcai-sse": {
238+
"type": "sse",
239+
"url": "http://<host>:<port>/sse"
240+
}
241+
}
242+
}
243+
```

0 commit comments

Comments
 (0)