An open API service indexing awesome lists of open source software.

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

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.