https://github.com/dlukt/mcp-server
MCP server to list read update delete files and make http requests
https://github.com/dlukt/mcp-server
filesystem http-client mcp mcp-server
Last synced: about 1 month ago
JSON representation
MCP server to list read update delete files and make http requests
- Host: GitHub
- URL: https://github.com/dlukt/mcp-server
- Owner: dlukt
- Created: 2025-08-15T14:42:51.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-08-22T09:01:14.000Z (10 months ago)
- Last Synced: 2025-08-22T10:29:47.772Z (10 months ago)
- Topics: filesystem, http-client, mcp, mcp-server
- Language: Go
- Homepage:
- Size: 5.19 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MCP server
For file operations and doing HTTP requests.
## install
go install github.com/dlukt/mcp-server@latest
## run
```bash
./mcp-fileserver --base /path/to/sandbox \
--allow-overwrite=false \
--max-bytes=104857600 # 100MB
```
## use in LM Studio
```json
{
"mcpServers": {
"mcp-fileserver": {
"command": "/home/{{user}}/go/bin/mcp-server",
"args": [
"--base",
"/home/{{user}}/mcproot",
"--allow-overwrite=true",
"--max-bytes",
"104857600"
],
"env": {}
}
}
}
```
Replace `{{user}}` with your username, or provide different a path.