25 lines
653 B
Markdown
25 lines
653 B
Markdown
|
|
# filesystem-mcp
|
||
|
|
|
||
|
|
MCP server for filesystem operations (read, write, search files).
|
||
|
|
|
||
|
|
Source: [`@modelcontextprotocol/server-filesystem`](https://npm.im/@modelcontextprotocol/server-filesystem)
|
||
|
|
|
||
|
|
## Environment Variables
|
||
|
|
|
||
|
|
None required. Mount the directory you want to expose:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
docker run -d \
|
||
|
|
--name filesystem-mcp \
|
||
|
|
-p 8114:8114 \
|
||
|
|
-v /path/to/expose:/workspace \
|
||
|
|
forgejo.corentic.eu/corentic/mcp-fleet-filesystem:latest
|
||
|
|
```
|
||
|
|
|
||
|
|
## Tools
|
||
|
|
|
||
|
|
- `read_file` — Read file contents
|
||
|
|
- `write_file` — Write/create files
|
||
|
|
- `search_files` — Search files by pattern
|
||
|
|
- `list_directory` — List directory contents
|
||
|
|
- `get_file_info` — File metadata
|