Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/filesystem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,18 @@ Note: all directories must be mounted to `/projects` by default.
}
```

> **Windows users:** On Windows, npx is installed as `npx.cmd`. Use the `cmd /c` wrapper:
> ```json
> {
> "mcpServers": {
> "filesystem": {
> "command": "cmd",
> "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-filesystem", "C:\\Users\\username\\Desktop"]
> }
> }
> }
> ```

## Usage with VS Code

For quick installation, click the installation buttons below...
Expand Down Expand Up @@ -308,6 +320,18 @@ Note: all directories must be mounted to `/projects` by default.
}
```

> **Windows users:** On Windows, npx is installed as `npx.cmd`. Use the `cmd /c` wrapper:
> ```json
> {
> "servers": {
> "filesystem": {
> "command": "cmd",
> "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-filesystem", "${workspaceFolder}"]
> }
> }
> }
> ```

## Build

Docker build:
Expand Down