mcp-server

dlukt/mcp-server

3.1

If you are the rightful owner of mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The MCP server is designed for handling file operations and HTTP requests efficiently.

MCP server

For file operations and doing HTTP requests.

install

go install github.com/dlukt/mcp-server@latest

run

./mcp-fileserver --base /path/to/sandbox \
  --allow-overwrite=false \
  --max-bytes=104857600 # 100MB

use in LM Studio

{
  "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.