You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-3Lines changed: 19 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,20 +140,36 @@ Download the latest `.vsix` from the [Releases](https://github.com/CodingWithCal
140
140
2. Go to **Tools > MCP Server > Start Server** (or enable auto-start in settings)
141
141
3. The MCP server starts on `http://localhost:5050`
142
142
143
-
### 🤖 Configuring Claude Desktop
143
+
### 🤖 Configuring Claude Desktop & Claude Code
144
144
145
-
Add this to your Claude Desktop MCP settings:
145
+
Add this to your Claude Desktop or Claude Code MCP settings (preferred HTTP method):
146
146
147
147
```json
148
148
{
149
149
"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",
151
165
"url": "http://localhost:5050/sse"
152
166
}
153
167
}
154
168
}
155
169
```
156
170
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
+
157
173
### ⚙️ Settings
158
174
159
175
Configure the extension at **Tools > Options > MCP Server**:
0 commit comments