Skip to content

Commit 233975f

Browse files
committed
docs(readme): update claude installation with preferred HTTP method and note SSE deprecation
1 parent 5d7adc4 commit 233975f

1 file changed

Lines changed: 19 additions & 3 deletions

File tree

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,20 +140,36 @@ Download the latest `.vsix` from the [Releases](https://github.com/CodingWithCal
140140
2. Go to **Tools > MCP Server > Start Server** (or enable auto-start in settings)
141141
3. The MCP server starts on `http://localhost:5050`
142142

143-
### 🤖 Configuring Claude Desktop
143+
### 🤖 Configuring Claude Desktop & Claude Code
144144

145-
Add this to your Claude Desktop MCP settings:
145+
Add this to your Claude Desktop or Claude Code MCP settings (preferred HTTP method):
146146

147147
```json
148148
{
149149
"mcpServers": {
150-
"visual-studio": {
150+
"visualstudio": {
151+
"type": "http",
152+
"url": "http://localhost:5050"
153+
}
154+
}
155+
}
156+
```
157+
158+
**Legacy SSE method** (deprecated, but still supported):
159+
160+
```json
161+
{
162+
"mcpServers": {
163+
"visualstudio": {
164+
"type": "sse",
151165
"url": "http://localhost:5050/sse"
152166
}
153167
}
154168
}
155169
```
156170

171+
> ℹ️ **Note:** The HTTP method is the preferred standard. SSE (Server-Sent Events) is a legacy protocol and should only be used for backward compatibility.
172+
157173
### ⚙️ Settings
158174

159175
Configure the extension at **Tools > Options > MCP Server**:

0 commit comments

Comments
 (0)