Skip to content
Google Cloud Observability MCP Server

Google Cloud Observability MCP Server

Released
6 views
v0.2.3
Apache-2.0

Summary

Official Google server exposing Google Cloud Observability to agents — querying logs, metrics and traces from a Google Cloud project without leaving the assistant.

Features

  • Queries Google Cloud Logging, Monitoring and Trace through one MCP server
  • Pairs with the gcloud MCP server: telemetry for diagnosis, gcloud for action
  • Local stdio server run with npx, using your own Google Cloud credentials
  • Installable as a Gemini CLI extension
  • Apache 2.0, maintained by Google in the googleapis organisation

Installation

Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.

Any MCP-compatible agent

Most agents (Claude, Cursor, Windsurf, VS Code, and more) read a standard mcpServers configuration.

  1. Open your agent's MCP configuration file.
  2. Merge the snippet below into it.
  3. Restart the agent — the "Google Cloud Observability MCP Server" tools will be available.
{
  "mcpServers": {
    "google-cloud-observability-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@google-cloud/observability-mcp"
      ]
    }
  }
}

Description

Debugging a Google Cloud workload usually means three consoles: Cloud Logging for what was written, Cloud Monitoring for what the metrics did, and Cloud Trace for where the latency went. This official Google MCP server puts all three behind an agent, so an investigation can move between them in one conversation rather than three browser tabs.

The server talks to the Google Cloud Observability APIs directly, which makes it complementary to the sibling gcloud MCP server: gcloud is for changing and inspecting your environment, observability-mcp is for asking what that environment actually did. In practice the pairing is how most incident work goes — read the telemetry, form a hypothesis, then run the command.

Setup

It runs as a local stdio server, so any MCP client takes a standard entry running npx -y @google-cloud/observability-mcp. Node.js 20 or higher is required, along with Google Cloud credentials that carry the relevant observability read permissions on the project you intend to query. As with the other servers in the repository, it can be installed as a Gemini CLI extension using the package's init command.

Scope and licensing

Published in the same googleapis/gcloud-mcp repository as the gcloud, Cloud Storage and Backup and DR servers, under Apache 2.0. Google also runs a set of remote, fully managed MCP servers for Google Cloud products that authenticate over HTTP with your Google credentials; the local npm servers are the option to reach for when you want the agent talking to your own credentials from your own machine.

Related MCP Servers

New

Arm's official MCP server for porting and tuning software on Arm — semantic docs search, codebase migration scanning, container architecture checks and LLVM-MCA assembly analysis.

New

Official AntV MCP server that turns a description of your data into a rendered chart — 26 visualization types from bar and line to sankey, mind-map, fishbone and geographic maps.

MCP: Headroom

by Headroom Labs

New

Context-compression MCP server that shrinks tool outputs, logs, files and RAG chunks before they reach the model, cutting 60-95% of tokens on JSON payloads.

MCP: Engram

by Gentleman Programming

New

Persistent memory for coding agents as a single Go binary — SQLite and FTS5 behind MCP, an HTTP API, a CLI and a TUI, with no Node, Python or Docker required.

Browse all MCP servers →