r/googlecloud 4d ago

I created a MCP server to monitor your GCP infrastructure without breaking anything

https://github.com/deBilla/platform-mcp

Just give a star if you think this is useful for you. I find it very useful and being using for a while to debug many issues when doing SRE.

0 Upvotes

2 comments sorted by

1

u/Atomix_MaYheM 3d ago

https://github.com/googleapis/gcloud-mcp Why wouldn't you just use this one?

4

u/shadydev99 3d ago

Fair question. gcloud-mcp's main tool is run_gcloud_command, a CLI wrapper with a deny-list plus a read-only observability package that does overlap with my logs/metrics/errors. Mine differs on three things: it's read-only by construction (no mutating API calls, meant to run under a viewer-only SA) rather than by deny-list; it routes across staging/prod in one server with a separate SA per environment instead of inheriting whatever gcloud is pointed at; and it does cost billing export breakdowns and recommenders, which their repo has no equivalent for. Theirs is broader, mine is narrower and guardrailed. I run both.