Skip to content

Commit 959e73d

Browse files
committed
Fix Windows path backslash escaping
Resolves modelcontextprotocol#81
1 parent 95a6163 commit 959e73d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ In this case, we'll add our single weather server like so:
453453
"command": "uv",
454454
"args": [
455455
"--directory",
456-
"C:\\ABSOLUTE\PATH\TO\PARENT\FOLDER\weather",
456+
"C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\weather",
457457
"run",
458458
"weather"
459459
]
@@ -974,7 +974,7 @@ In this case, we'll add our single weather server like so:
974974
"weather": {
975975
"command": "node",
976976
"args": [
977-
"C:\\PATH\TO\PARENT\FOLDER\weather\build\index.js"
977+
"C:\\PATH\\TO\\PARENT\\FOLDER\\weather\\build\\index.js"
978978
]
979979
}
980980
}

0 commit comments

Comments
 (0)