Skip to content

Commit 5190ce8

Browse files
committed
Fix commands for other example servers in quickstart
1 parent c6a24e6 commit 5190ce8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

quickstart.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ Want to give Claude Desktop more local integration capabilities? Add these serve
325325
Add this to your config to let Claude Desktop read and analyze files:
326326
```json
327327
"filesystem": {
328-
"command": "mcp-server-filesystem",
329-
"args": ["/Users/YOUR_USERNAME/Desktop"]
328+
"command": "npx",
329+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/YOUR_USERNAME/Desktop"]
330330
}
331331
```
332332
</Accordion>
@@ -335,8 +335,8 @@ Want to give Claude Desktop more local integration capabilities? Add these serve
335335
Connect Claude Desktop to your PostgreSQL database:
336336
```json
337337
"postgres": {
338-
"command": "mcp-server-postgres",
339-
"args": ["postgresql://localhost/mydb"]
338+
"command": "npx",
339+
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
340340
}
341341
```
342342
</Accordion>

0 commit comments

Comments
 (0)