google-cloud-support-mcp
Provides tools for interacting with Google Cloud Support cases, including searching, viewing, creating, updating, closing, and escalating cases, as well as managing comments, attachments, and problem classifications.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-cloud-support-mcplist my open support cases across all projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
google-cloud-support-mcp
An MCP server for Google Cloud Support. Read and act on support cases across every project and organization you have access to, without leaving the conversation.
This is not an official Google product. It is an independent project, not affiliated with, endorsed by, or supported by Google. It talks to the public Cloud Support API using your own credentials. Google Cloud and Google are trademarks of Google LLC.
What it covers
Fifteen tools over the Cloud Support API v2 — cases, comments, attachments, and problem classifications, plus scope discovery:
Group | Tools |
Scopes |
|
Cases (read) |
|
Cases (write) |
|
Classifications |
|
Comments |
|
Attachments |
|
Plus a case://{parent_type}/{parent_id}/{case_id} resource template and two
prompts (triage_open_cases, draft_case_from_incident).
Scopes are named in the conversation, not configured in advance. "List the open
cases in my-billing-project" works with nothing set up; list_scopes turns a name
you know into the identifier the API wants, which matters most for organizations —
they are addressed by a number nobody remembers.
Not covered, deliberately:
SupportEventSubscriptionService(7 RPCs) — push delivery and subscription CRUD alike.v2beta, includingFeedService.ShowFeed. The one thing v2beta looked like it offered — cross-organization search — turned out not to exist: its query grammar'sORcombines values within a field, never scope identifiers.
Related MCP server: GCP MCP Server
Prerequisites
Python 3.14+ and uv
A paid support plan (Standard, Enhanced, or Premium) on the target project or organization. The Cloud Support API is unavailable without one, and that failure is reported separately from a permissions failure.
IAM:
roles/cloudsupport.techSupportViewerto read,roles/cloudsupport.techSupportEditorto write. Organization-level scopes also needresourcemanager.organizations.get.For
list_scopesonly — the Cloud Resource Manager API enabled, plusresourcemanager.projects.getand, to see organizations,resourcemanager.organizations.get. Nothing else needs it, and holding one permission and not the other is fine: the class you cannot read is reported and the other still answers.gcloud services enable cloudresourcemanager.googleapis.com --project=PROJECT_IDAPI enabled and credentials resolved:
gcloud services enable cloudsupport.googleapis.com --project=PROJECT_ID gcloud auth application-default login gcloud auth application-default set-quota-project PROJECT_ID
Install and run
Nothing to clone or install — uvx fetches the published package and runs it:
uvx google-cloud-support-mcpRegister it with an MCP client:
{
"mcpServers": {
"google-cloud-support": {
"command": "uvx",
"args": ["google-cloud-support-mcp"],
"env": {
"GOOGLE_CLOUD_SUPPORT_MCP_PARENTS": "[\"projects/my-project\",\"organizations/123456789\"]",
"GOOGLE_CLOUD_SUPPORT_MCP_QUOTA_PROJECT": "my-project"
}
}
}
}Pin a release with uvx google-cloud-support-mcp@0.1.0 if you would rather not
track the latest.
From a clone
uv sync
uv run google-cloud-support-mcp # stdio
uv run fastmcp inspect # tool surface, without starting a sessionfastmcp.json points the FastMCP CLI at server.py:create_server, so inspect,
run and dev all work with no arguments.
{
"mcpServers": {
"google-cloud-support": {
"command": "uv",
"args": ["run", "--directory", "/path/to/google-cloud-support-mcp", "google-cloud-support-mcp"],
"env": {
"GOOGLE_CLOUD_SUPPORT_MCP_PARENTS": "[\"projects/my-project\",\"organizations/123456789\"]",
"GOOGLE_CLOUD_SUPPORT_MCP_QUOTA_PROJECT": "my-project"
}
}
}
}Configuration
All variables take the GOOGLE_CLOUD_SUPPORT_MCP_ prefix.
Variable | Default | What it does |
|
| Optional default. Used only when a request names no scope. You can name a project or organization in the conversation instead — |
| — | Billing/quota project. Organization-level calls with user credentials generally need this. |
|
|
|
|
| Escalation is hidden unless you turn it on. See below. |
| system temp | Where |
|
| Client-side check before an upload is offered. |
|
| Kept small so list results do not swamp the conversation. |
|
| Parallel scopes per query; lower it if you hit rate limits. |
Two things worth knowing
Nothing reaches Google without your confirmation. Every outward-facing action
shows you the exact payload and waits. Declining sends nothing. The approved
payload is sealed by the framework between rounds, so what executes is
byte-for-byte what you were shown — a confirm: true parameter could not do
this, because the model would be the one filling it in.
Escalation is off by default. It is delivered to Google's support
organisation and a person acts on it. Set GOOGLE_CLOUD_SUPPORT_MCP_ENABLE_ESCALATION=true
to expose the tool; it still requires a written justification and your
confirmation.
Cross-organization queries
search_cases queries every configured scope in parallel and merges the results.
A scope that fails does not fail the call — it appears in scopes_failed with
what to do about it, so one organization's permission error never hides another
organization's cases. Pagination uses a composite cursor that carries a token per
scope; changing parents mid-pagination is rejected rather than silently skewing
the results.
Known limitations
Attachment upload limits are unverified. MAX_UPLOAD_BYTES defaults to 10 MB, which is a
placeholder rather than a measured ceiling — the API does not document one, and no live upload
has been run against a project with a paid support plan. The limit may be higher or lower than
the real one, and the transfer form is an informed reading of the media reference rather than
a confirmed protocol.
A mistyped scope reports the wrong thing. Name a project that does not exist and the answer
says the service is temporarily unreachable and suggests retrying. Retrying will not help: the
upstream API returns a bare HTTP 500 for a nonexistent project, and a 500 carries nothing that
separates a typo from a real outage — so reclassifying it would mislabel genuine outages
instead. The scope still appears in scopes_failed rather than silently returning "no cases".
TODO.md has the full list and what would unblock each item.
Development
uv run pytest # unit + contract; integration is deselected
uv run ruff check . && uv run ruff format --check .
uv run fastmcp inspect # the server must load through the FastMCP CLIThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Read and edit GA4, Search Console and Google Tag Manager from any MCP client. 29 tools.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Create, schedule, and publish social posts, manage accounts, and read analytics as MCP tools.
Read-only MCP for identity resolution and write guardrails.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with and manage Google Cloud Platform resources including Compute Engine, Cloud Run, Storage, BigQuery, and other GCP services through a standardized MCP interface.16MIT
- AlicenseBqualityNot gradedmaintenanceEnables AI assistants to interact with and manage Google Cloud Platform resources including Artifact Registry, BigQuery, Cloud Build, Compute Engine, Cloud Run, Cloud Storage, and monitoring services through a standardized MCP interface.1
- AlicenseNot gradedqualityDmaintenanceEnables management of Google Cloud services including BigQuery, Cloud Logging, Cloud Storage, and Compute Engine via MCP tools.MIT
- FlicenseNot gradedqualityBmaintenanceProvides read/write access to Google Sheets and Google Docs through MCP tools, enabling operations like reading sheets, appending rows, and editing documents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hypn4/google-cloud-support-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server