telemetry-mcp

telemetry-mcp

A read-only MCP server for querying telemetry data from configurable backends. Provides tools to list sources, describe schemas, run bounded queries, and compute aggregates.

Category
Visit Server

README

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 a consolidation decision; 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.

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured