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
@@ -312,14 +345,24 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
312
345
}
313
346
```
314
347
315
-
## Docker
348
+
## Docker Usage
316
349
317
-
```bash
318
-
# Build
319
-
docker build -t filesystem-mcp-server .
350
+
Running the server in Docker provides an additional layer of security through container isolation, limiting the agent's access to only the mounted directories. Mirror host paths in your volume mounts (e.g., `-v /path:/path` instead of `-v /path:/data`) so the AI agent sees the same paths you reference in conversation.
320
351
352
+
```bash
321
353
# Run with mounted directories
322
-
docker run -v /host/path:/data filesystem-mcp-server /data
0 commit comments