AgentHubAgentHub

gcs

MCP ServerMCP Registry官方收录

com.pulsemcp/gcs · v0.1.8

MCP server for Google Cloud Storage with fine-grained tool access control.

概览

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

安装

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

{
  "mcpServers": {
    "gcs": {
      "command": "npx",
      "args": [
        "-y",
        "gcs-google-mcp-server"
      ],
      "env": {
        "GCS_PROJECT_ID": "<GCS_PROJECT_ID>"
      }
    }
  }
}

环境变量

GCS_PROJECT_ID必填

Google Cloud project ID.

GCS_SERVICE_ACCOUNT_KEY_FILE可选secret

Path to service account key JSON file.

GCS_SERVICE_ACCOUNT_KEY_JSON可选secret

Service account key JSON contents (inline).

GCS_BUCKET可选

Constrain all operations to a single bucket (hides bucket-level tools).

GCS_ENABLED_TOOLGROUPS可选

Comma-separated tool groups to enable (readonly, readwrite, delete).

GCS_ENABLED_TOOLS可选

Comma-separated list of specific tools to enable (overrides groups).

GCS_DISABLED_TOOLS可选

Comma-separated list of specific tools to disable.

SKIP_HEALTH_CHECKS可选

Skip health checks on startup.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/gcs",
  "type": "mcp-server",
  "version": "0.1.8",
  "displayName": "gcs",
  "description": "MCP server for Google Cloud Storage with fine-grained tool access control.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/gcs"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "gcs-google-mcp-server",
        "version": "0.1.8",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GCS_PROJECT_ID",
            "description": "Google Cloud project ID.",
            "isRequired": true
          },
          {
            "name": "GCS_SERVICE_ACCOUNT_KEY_FILE",
            "description": "Path to service account key JSON file.",
            "isSecret": true
          },
          {
            "name": "GCS_SERVICE_ACCOUNT_KEY_JSON",
            "description": "Service account key JSON contents (inline).",
            "isSecret": true
          },
          {
            "name": "GCS_BUCKET",
            "description": "Constrain all operations to a single bucket (hides bucket-level tools)."
          },
          {
            "name": "GCS_ENABLED_TOOLGROUPS",
            "description": "Comma-separated tool groups to enable (readonly, readwrite, delete)."
          },
          {
            "name": "GCS_ENABLED_TOOLS",
            "description": "Comma-separated list of specific tools to enable (overrides groups)."
          },
          {
            "name": "GCS_DISABLED_TOOLS",
            "description": "Comma-separated list of specific tools to disable."
          },
          {
            "name": "SKIP_HEALTH_CHECKS",
            "description": "Skip health checks on startup."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/gcs",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fgcs/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
gcs — MCP Server 安装与配置 · AgentHub