File tree Expand file tree Collapse file tree 1 file changed +22
-3
lines changed
Expand file tree Collapse file tree 1 file changed +22
-3
lines changed Original file line number Diff line number Diff 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+ ```
You can’t perform that action at this time.
0 commit comments