HomeProductivity › Rustpad MCP Server

Rustpad MCP Server

MCP server for Rustpad, the self-hosted collaborative text editor

TypeScript Local macOSWindowsLinux
★ 0 stars Last pushed 2026-09-22 License: MIT

Topics: Workplace & Productivity

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.4.0)

npx -y rustpad-mcp@0.4.0

Or add to your MCP client config:

{
  "mcpServers": {
    "rustpad-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "rustpad-mcp@0.4.0"
      ],
      "env": {
        "RUSTPAD_URL": "<YOUR_VALUE>",
        "RUSTPAD_READ_ONLY": "<YOUR_VALUE>",
        "RUSTPAD_INSECURE_TLS": "<YOUR_VALUE>",
        "RUSTPAD_ALLOW_TOOLS": "<YOUR_VALUE>",
        "RUSTPAD_DENY_TOOLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • RUSTPAD_URL required — Base URL of the Rustpad instance, e.g. https://rustpad.example.net
  • RUSTPAD_READ_ONLY — Exactly 'true' registers only the 3 read tools
  • RUSTPAD_INSECURE_TLS — Exactly 'true' accepts a self-signed certificate, scoped to this connection
  • RUSTPAD_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • RUSTPAD_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever RUSTPAD_ALLOW_TOOLS left

Package (oci)

docker run -i --rm ghcr.io/ni-c/rustpad-mcp:0.4.0

Or add to your MCP client config:

{
  "mcpServers": {
    "rustpad-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ni-c/rustpad-mcp:0.4.0"
      ],
      "env": {
        "RUSTPAD_URL": "<YOUR_VALUE>",
        "RUSTPAD_READ_ONLY": "<YOUR_VALUE>",
        "RUSTPAD_INSECURE_TLS": "<YOUR_VALUE>",
        "RUSTPAD_ALLOW_TOOLS": "<YOUR_VALUE>",
        "RUSTPAD_DENY_TOOLS": "<YOUR_VALUE>"
      }
    }
  }
}
  • RUSTPAD_URL required — Base URL of the Rustpad instance, e.g. https://rustpad.example.net
  • RUSTPAD_READ_ONLY — Exactly 'true' registers only the 3 read tools
  • RUSTPAD_INSECURE_TLS — Exactly 'true' accepts a self-signed certificate, scoped to this connection
  • RUSTPAD_ALLOW_TOOLS — Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)
  • RUSTPAD_DENY_TOOLS — Comma-separated tool names or list_* prefixes to remove from whatever RUSTPAD_ALLOW_TOOLS left

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry