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
Test with Claude Desktop or using The MCP Inspector
122
161
123
162
### Claude Desktop
124
-
Configure the MCP server in the Claude `claude_desktop_config.json` file (located on Windows in `~\AppData\Roaming\Claude\claude_desktop_config.json`).
163
+
Configure the MCP server in the Claude `claude_desktop_config.json` file:
Make sure the server is running in HTTP mode first:
169
+
170
+
```bash
171
+
# Terminal 1: Start the server
172
+
MCP_MODE=http npm run dev
173
+
174
+
# Terminal 2: Verify it's running
175
+
curl http://localhost:3000/health
176
+
```
177
+
178
+
Then configure Claude Desktop:
125
179
126
180
```json
127
181
{
@@ -131,7 +185,7 @@ Configure the MCP server in the Claude `claude_desktop_config.json` file (locate
131
185
"args": [
132
186
"-y",
133
187
"mcp-remote",
134
-
"http://localhost:3000/sse",
188
+
"http://localhost:3000/mcp",
135
189
"--insecure"
136
190
]
137
191
}
@@ -140,11 +194,20 @@ Configure the MCP server in the Claude `claude_desktop_config.json` file (locate
140
194
```
141
195
142
196
### VS Code Copilot
143
-
1. Configure the MCP Server in the [mcp.json](./.vscode/mcp.json) file.
144
-
2. Click the `Configure tools...` icon in the Copilot chat pane.
145
-
3. Click `Update tools` under the `truvera-mcp-service-vs-code` MCP server.
146
-
4. Click the checkbox beside the tools you want to enable.
147
-
5. Click `OK`
197
+
198
+
1. Make sure the server is running in HTTP mode:
199
+
200
+
```bash
201
+
MCP_MODE=http npm run dev
202
+
```
203
+
204
+
2. The VS Code MCP configuration is already set up in [.vscode/mcp.json](./.vscode/mcp.json)
205
+
3. Click the `Configure tools...` icon in the Copilot chat pane.
206
+
4. Click `Update tools` under the `truvera-mcp-service-vs-code` MCP server.
207
+
5. Click the checkbox beside the tools you want to enable.
208
+
6. Click `OK`
209
+
210
+
The configuration in `.vscode/mcp.json`:
148
211
149
212
```json
150
213
{
@@ -154,17 +217,16 @@ Configure the MCP server in the Claude `claude_desktop_config.json` file (locate
154
217
"args": [
155
218
"-y",
156
219
"mcp-remote",
157
-
"http://localhost:3000/sse",
220
+
"http://localhost:3000/mcp",
158
221
"--insecure"
159
222
]
160
223
}
161
-
162
224
}
163
225
}
164
226
```
165
227
166
228
### MCP Inspector
167
-
The MCP Inspector is an open source tool that provides a GUI client for interacting with the MCP server tools.
229
+
The [MCP Inspector](https://modelcontextprotocol.io/docs/tools/inspector) is an open source tool that provides a GUI client for interacting with the MCP server tools.
0 commit comments