Skip to content
Grok

remote filesystem for Grok

com.pulsemcp/remote-filesystem

MCP server for remote filesystem operations on cloud storage (Google Cloud Storage).

client:Grok transport:stdio runtime:npm

Install remote filesystem in Grok

.mcp.json (in your project root)

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "remote-filesystem": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "remote-filesystem-mcp-server"
      ],
      "env": {
        "GCS_BUCKET": "<GCS_BUCKET>",
        "GCS_PROJECT_ID": "<GCS_PROJECT_ID>",
        "GCS_CLIENT_EMAIL": "<GCS_CLIENT_EMAIL>",
        "GCS_PRIVATE_KEY": "<GCS_PRIVATE_KEY>",
        "GOOGLE_APPLICATION_CREDENTIALS": "<GOOGLE_APPLICATION_CREDENTIALS>",
        "GCS_ROOT_PATH": "<GCS_ROOT_PATH>",
        "GCS_MAKE_PUBLIC": "<GCS_MAKE_PUBLIC>",
        "ENABLED_TOOLGROUPS": "<ENABLED_TOOLGROUPS>"
      }
    }
  }
}

Grok Build reads Claude Code's .mcp.json and Claude Desktop's config unchanged, so a server you have already set up there needs nothing new. The Grok web app and X integration do not take custom servers. Grok docs

remote filesystem in other clients