AgentHubAgentHub

remote-filesystem

MCP ServerMCP Registry官方收录

com.pulsemcp/remote-filesystem · v0.1.2

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

概览

remote-filesystem 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "remote-filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "remote-filesystem-mcp-server"
      ],
      "env": {
        "GCS_BUCKET": "<GCS_BUCKET>"
      }
    }
  }
}

环境变量

GCS_BUCKET必填

Google Cloud Storage bucket name.

GCS_PROJECT_ID可选

Google Cloud project ID.

GCS_CLIENT_EMAIL可选

Service account email for inline credentials.

GCS_PRIVATE_KEY可选secret

Service account private key for inline credentials.

GOOGLE_APPLICATION_CREDENTIALS可选

Path to Google Cloud service account key file.

GCS_ROOT_PATH可选

Root path prefix to restrict access within bucket.

GCS_MAKE_PUBLIC可选

Make uploaded files publicly accessible.

ENABLED_TOOLGROUPS可选

Comma-separated tool groups: readonly or readwrite.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/remote-filesystem",
  "type": "mcp-server",
  "version": "0.1.2",
  "displayName": "remote-filesystem",
  "description": "MCP server for remote filesystem operations on cloud storage (Google Cloud Storage).",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/remote-filesystem"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "remote-filesystem-mcp-server",
        "version": "0.1.2",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GCS_BUCKET",
            "description": "Google Cloud Storage bucket name.",
            "isRequired": true
          },
          {
            "name": "GCS_PROJECT_ID",
            "description": "Google Cloud project ID."
          },
          {
            "name": "GCS_CLIENT_EMAIL",
            "description": "Service account email for inline credentials."
          },
          {
            "name": "GCS_PRIVATE_KEY",
            "description": "Service account private key for inline credentials.",
            "isSecret": true
          },
          {
            "name": "GOOGLE_APPLICATION_CREDENTIALS",
            "description": "Path to Google Cloud service account key file."
          },
          {
            "name": "GCS_ROOT_PATH",
            "description": "Root path prefix to restrict access within bucket."
          },
          {
            "name": "GCS_MAKE_PUBLIC",
            "description": "Make uploaded files publicly accessible."
          },
          {
            "name": "ENABLED_TOOLGROUPS",
            "description": "Comma-separated tool groups: readonly or readwrite."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/remote-filesystem",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fremote-filesystem/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
remote-filesystem — MCP Server 安装与配置 · AgentHub