File size: 618 Bytes
2f99641 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
---
title: Gradio Filesystem MCP Server
emoji: 📁
colorFrom: blue
colorTo: gray
sdk: docker
app_port: 7860
pinned: true
short_description: Simple MCP Fileserver to read and write from a local directory.
tags:
- mcp-server-track
---
## Run
```bash
docker build -t fs_mcp .
docker run -p 7860:7860 fs_mcp
```
The files reside in */app/files*. It should also be possible to mount external files via docker.
One can disable editing files using the env variable *ALLOW_EDITING=false*:
```bash
docker run -p 7860:7860 -e ALLOW_EDITING=false fs_mcp
```
The MCP server will be available under *http://localhost:7860* |