Skip to content
Cursor

remote filesystem for Cursor

com.pulsemcp/remote-filesystem

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

client:Cursor transport:stdio runtime:npm

Install remote filesystem in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

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>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

remote filesystem in other clients