Skip to content

Commit 8d278ce

Browse files
author
adilei
committed
added windows curl syntax
1 parent 93f5f7b commit 8d278ce

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

labs/guildhall-custom-mcp/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,25 @@ In this quest, you will complete four use cases:
217217
218218
12. Test the tunnel endpoint:
219219
220+
**Mac/Linux:**
220221
```bash
221222
curl https://your-tunnel-url.devtunnels.ms/mcp \
222223
-H "Content-Type: application/json" \
223224
-H "Accept: application/json, text/event-stream" \
224225
-d '{"jsonrpc":"2.0","id":"1","method":"tools/list"}'
225226
```
226227
228+
**Windows (PowerShell):**
229+
```powershell
230+
curl https://your-tunnel-url.devtunnels.ms/mcp `
231+
-H "Content-Type: application/json" `
232+
-H "Accept: application/json, text/event-stream" `
233+
-d '{"jsonrpc":"2.0","id":"1","method":"tools/list"}'
234+
```
235+
236+
> [!NOTE]
237+
> **PowerShell uses backticks (`)** for line continuation instead of backslashes (`\`).
238+
227239
13. Expected: JSON response listing available tools like `list_quests`, `parties`, `chest`, and `hire_party`.
228240
229241
---

0 commit comments

Comments
 (0)