Skip to main content
Glama
selamy-labs

telemetry-mcp

by selamy-labs

telemetry-mcp

telemetry-mcp is a small, read-only Model Context Protocol server that exposes a configurable metrics/telemetry backend as typed tools: list sources, describe a source's schema, run a bounded query, and compute a single aggregate. It turns ad-hoc "go read the numbers" scripts into constrained, structured tools an agent can call.

The server is schema-agnostic by design: it hard-codes no dataset, table, or metric. The shape of the available telemetry is supplied entirely by the injected backend, so the same server works against whatever dataset infra wires up.

Repo structure: this ships as a per-server repo, following the shipped convention (e.g. reddit-mcp, dispatch-mcp). Whether the fleet's MCP servers consolidate into a single agent-mcp repo is pending decision #653; until that lands, this stays per-server.

Tools

Tool

Purpose

metrics_list_sources()

List the telemetry sources (datasets/tables/metrics) the backend exposes.

metrics_describe(source)

Describe one source: its description and column -> type schema.

metrics_query(source, start, end, filters?, limit?)

Bounded, read-only query over [start, end); returns structured rows.

metrics_summary(metric, start, end, agg)

A single aggregate (count/sum/avg/min/max) of a metric over a range.

start / end are ISO-8601 instants. filters is an optional column -> value mapping (keys are validated; values are bound as query parameters by the backend, never string-interpolated). limit is capped by the core.

Related MCP server: Snowflake Cube Server

Security model

This server is built so that exposing it does not expose arbitrary data access or command execution. The properties below are enforced in code and covered by tests.

  • Read-only. The tools are list/describe/query/summary. There is no write, no DDL, and no run_sql / raw-query escape hatch — a caller cannot supply query text.

  • Bounded. Every query is time-ranged and limit-capped (MAX_LIMIT), so a call cannot pull an unbounded result set.

  • No embedded credentials. Nothing in this package stores a token or key. Credentials are resolved at call time by an injected CredentialProvider (backed by WIF/GSM/env in production) and handed to the backend per request; they never live in source, in the service, or in a returned payload (tests assert the sentinel credential never appears in output).

  • Validated handles. Source / metric / filter-key names are restricted to a conservative identifier shape, so a rejected lookup cannot smuggle injection or path traversal into the backend (defence in depth; the backend's own allowlist is the real gate).

  • Schema-agnostic. No dataset/table/metric is hard-coded; the backend defines what exists, so the server cannot leak the existence of anything the backend does not expose.

Deliberate omissions

  • No tool lets the caller supply or override executed query text.

  • No tool returns or accepts credentials.

  • No mutation/DDL capability — if you need to change data, that is out of scope here by design.

Configuration (environment, resolved at call time)

Variable

Effect

TELEMETRY_BQ_PROJECT

BigQuery project the production backend targets (consumed once infra wires it).

TELEMETRY_BQ_DATASET

BigQuery dataset whose tables/views become the available sources.

No credentials are read from the environment by this server; identity is resolved per call from the runtime (WIF/GSM) by the credential provider.

What infra must wire (the build split)

This repo is the offline-testable scaffold. The core, the MCP wrapper, the backend interface, and a full offline test suite (fake in-memory backend) are complete here. The live BigQuery adapter + credentials are intentionally not wired — that is the infra half:

  1. Backend implementation. Complete BigQueryBackend in src/telemetry_mcp/backend.py (currently fails fast with "not wired up"). It must implement the read-only, parameterised path:

    • list_sources / describe from the dataset's tables/views and INFORMATION_SCHEMA.

    • query / summary as read-only BigQuery jobs where the time range and filter values are passed as query parameters (never interpolated), and limit becomes a LIMIT clause.

    • Install the optional dependency: pip install 'telemetry-mcp[bigquery]'.

  2. Dataset. A BigQuery dataset (in the chosen project, e.g. speedforge-prod-499002) whose tables/views are the telemetry sources. The server adopts whatever schema the dataset has — nothing is hard-coded.

  3. Identity (keyless). A Workload Identity Federation service account with read-only BigQuery access to that dataset (e.g. roles/bigquery.dataViewer

    • roles/bigquery.jobUser). The CredentialProvider resolves this at call time; no key is stored in this repo or the image. (Prefer WIF over a static SA key.)

  4. Config. Set TELEMETRY_BQ_PROJECT and TELEMETRY_BQ_DATASET for the workload.

Until step 1 lands, the production backend raises and only the fake-backed offline path runs — so this scaffold is safe to ship and CI is green without any GCP access.

Install

Run directly from GitHub with the MCP extra:

uvx --from "git+https://github.com/selamy-labs/telemetry-mcp@v0.1.0#egg=telemetry-mcp[mcp]" telemetry-mcp

Or with pipx:

pipx install "telemetry-mcp[mcp] @ git+https://github.com/selamy-labs/telemetry-mcp@v0.1.0"

MCP client config

{
  "mcpServers": {
    "telemetry": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/selamy-labs/telemetry-mcp@v0.1.0#egg=telemetry-mcp[mcp]",
        "telemetry-mcp"
      ],
      "env": {
        "TELEMETRY_BQ_PROJECT": "speedforge-prod-499002",
        "TELEMETRY_BQ_DATASET": "telemetry"
      }
    }
  }
}

Architecture

The metrics logic lives once in telemetry_mcp.core.MetricsService; the MCP server in telemetry_mcp.mcp_server is a thin wrapper that serialises structured results to JSON and maps expected failures to ToolError. All data access goes through an injected backend (telemetry_mcp.backend.MetricsBackend) and all credential resolution through an injected CredentialProvider, so the full validate / route / shape path is exercised offline in tests with a fake in-memory backend — no GCP, no network. The default backend (BigQueryBackend) uses only the standard library until infra wires it, so the core package has zero runtime dependencies; the mcp SDK and google-cloud-bigquery are optional extras.

Development

python -m pip install -e ".[test]"
ruff format --check .
ruff check .
coverage run -m pytest
coverage report --fail-under=95

License

MIT — see LICENSE.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/selamy-labs/telemetry-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server