Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
id = "gcp-mcp"
|
|
name = "Google Cloud Platform"
|
|
description = "Manage GCP resources including Compute Engine, Cloud Storage, and BigQuery through the MCP server"
|
|
category = "cloud"
|
|
icon = "🌐"
|
|
tags = ["cloud", "google", "infrastructure", "gce", "gcs", "bigquery", "devops"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-gcp"]
|
|
|
|
[[required_env]]
|
|
name = "GOOGLE_APPLICATION_CREDENTIALS"
|
|
label = "Service Account Key Path"
|
|
help = "Absolute path to a GCP service account JSON key file"
|
|
is_secret = false
|
|
get_url = "https://console.cloud.google.com/iam-admin/serviceaccounts"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to the GCP Console > IAM & Admin > Service Accounts (https://console.cloud.google.com/iam-admin/serviceaccounts) and create a new service account with the necessary roles.
|
|
2. Generate a JSON key file for the service account and save it to a secure location on your filesystem.
|
|
3. Enter the absolute path to the JSON key file in the GOOGLE_APPLICATION_CREDENTIALS field above.
|
|
"""
|