Observability Agent MCP
The Observability Agent MCP is a read-only server that provides AI agents with bounded, structured observability evidence from metrics, alerts, health checks, and Grafana dashboards — without executing commands or modifying systems.
What you can do:
Check capabilities (
observability.capabilities): Discover which providers and tools are enabled, along with configured limits and feature flags.Get service health snapshots (
observability.health_snapshot): Retrieve bounded health status (healthy/degraded/unhealthy/unknown) for named logical services, with summaries and timestamps.List active alerts (
observability.active_alerts): Fetch normalized alert metadata filtered by service, severity (critical/warning/info), and state (firing/pending/resolved), including annotations like summaries, descriptions, and runbook references.Query metrics (
observability.query_metrics): Run bounded instant or range queries using named templates against a Prometheus-compatible backend (including VictoriaMetrics), returning time-series data with labels and samples.Render a Grafana panel as PNG (
observability.render_panel): Fetch an allowlisted Grafana panel as a PNG image for a specified time range, theme, and dimensions, with metadata including byte size, SHA-256 hash, and render duration.Render a Grafana dashboard as PNG (
observability.render_dashboard): Fetch an entire allowlisted Grafana dashboard as a PNG image with the same structured metadata.Build incident context (
observability.incident_context): Assemble a compact evidence bundle for a specific alert or service, combining health data, active alerts, dashboard references, and optionally rendered visuals.
Key constraints:
All tools are read-only — no writes, silences, or remediations
Queries use named templates only — no raw PromQL from the client
Strict limits enforced (e.g., max 50 series, max 100 alerts, max 25 services)
All outputs include freshness indicators, truncation flags, and redaction notices
Visual rendering is opt-in and restricted to an allowlist of dashboards/panels
Consumable via stdio, authenticated Streamable HTTP, OCI image, or npm CLI
Provides tools for querying metrics, rendering panels and dashboards as PNG evidence, retrieving active alerts, and building compact incident context bundles from a Grafana instance, with read-only access and deterministic limits.
Planned direct integration for querying metrics from Prometheus-compatible backends, providing bounded instant and range queries with normalized evidence bundles, label redaction, and safe limits.
Planned direct integration as a Prometheus-compatible backend, allowing the same bounded metrics query and evidence contract as Prometheus without requiring Grafana.
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., "@Observability Agent MCPshow me the current health of all services"
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.
Pak Satpam
Pak Satpam is a bounded Model Context Protocol (MCP) server for operational AI agents. It turns allowlisted observability and CI provider data into small, typed, redacted evidence. The agent, chat gateway, credentials, and deployment policy remain outside the server.
Product Boundary
AI client or Hermes
|
| MCP stdio or private Streamable HTTP
v
Pak Satpam application
protocol -> policy -> domain evidence -> redaction and bounds
| | |
v v v
MCP schemas provider adapters metadata-only audit
| |
+---------> observability, CI, and SCM providersThe code follows these bounded contexts:
Protocol owns MCP lifecycle, transports, tool registration, and errors.
Policy owns provider, repository, workflow, ref, dashboard, query, and capability allowlists.
Evidence owns versioned envelopes, freshness, truncation, redaction, and deterministic digests.
Provider adapters translate Grafana, Prometheus-compatible backends, GitHub Actions, Jenkins, Bitbucket Cloud, and SCM APIs into those contracts.
CI operations owns read-only status, logs, failure analysis, remediation plans, SCM evidence, telemetry correlation, and the one approval-gated GitHub failed-job rerun.
Observer is an optional companion process for bounded polling/webhook normalization, dedupe, and signed internal delivery. It is not an MCP tool or a chat gateway.
Pak Satpam does not run an LLM, receive chat messages, execute shell commands, retrieve secrets, modify source, deploy workloads, mutate alerts or dashboards, or silently call another MCP server. The only write-capable path is GitHub's rerun-failed-jobs, and it requires a fresh one-time operator approval.
Related MCP server: Observe MCP Server
Current Condition
This documentation is based on the current committed Goal 19 source evidence.
The durable evidence references are the direct provider-neutral SCM contract,
the Bitbucket Data Center contract-only artifact at
docs/contracts/bitbucket-data-center-adapter.md, and their local contract
tests. The six SCM budgets, provider-native IDs, provider capability metadata,
bounded telemetry/CI evidence, and observer dedupe/stale suppression are
implemented and covered by local contract tests.
This checkout is not proof that a public release or private deployment exists. This task performs no publish or deploy. Publication still requires an authorized release workflow and a recorded npm/OCI artifact digest. The private edge observer and Hermes route remain deployment-owner work. Private HTTP is a single-operator pre-release transport; public exposure is blocked until OAuth, authorization, Origin policy, ingress, and tenant isolation are implemented and verified. See the implementation status.
Install And Run
Node.js 22 or newer is required.
npm package and stdio
Install the package in the directory used by the MCP client:
mkdir pak-satpam-runtime
cd pak-satpam-runtime
npm init -y
npm install @hmrdkn-labs/pak-satpam
npm exec -- pak-satpampak-satpam speaks MCP over stdio and uses the deterministic local observability provider. An MCP client should launch it as a child process, for example:
{
"command": "/absolute/path/to/pak-satpam-runtime/node_modules/.bin/pak-satpam",
"args": []
}The package also preserves the legacy executable aliases. See the CLI aliases and doctor section.
Private Streamable HTTP
Private HTTP is for a private, single-operator network. It requires a strict YAML runtime configuration and a bearer token in a regular 0600 file. Values are never put in the YAML, command line, MCP request, logs, or documentation.
npm exec -- pak-satpam-httpThe HTTP process reads these environment variables:
MCP_HTTP_HOST=127.0.0.1
MCP_HTTP_PORT=8765
MCP_HTTP_ALLOWED_HOSTS=127.0.0.1
OBSERVABILITY_PROVIDER_CONFIG=/private/path/provider-config.yml
MCP_TOKEN_FILE=/private/path/mcp-token
GRAFANA_TOKEN_FILE=/private/path/grafana-token # observability profiles onlyThe bearer file must be a regular 0600 file containing at least 16 bytes. The Grafana file follows the same rule. CI credentials, GitHub App material, approval keys, and Bitbucket tokens are separate 0600 files referenced by the runtime configuration. Use the versioned examples as placeholder-only templates.
The current HTTP routes are:
Route | Enabled when | Surface |
/mcp | observability is enabled | seven observability tools, plus CI tools in combined |
/mcp/ci | CI is enabled | CI tools only |
/healthz | HTTP process is running | unauthenticated process liveness |
All MCP routes require an Authorization Bearer credential and an exact configured Host value. /mcp is absent for ci-only; /mcp/ci is absent when CI is disabled.
OCI image
The canonical image identity is:
ghcr.io/hmrdkn-labs/pak-satpam@sha256:<immutable-digest>Use a digest recorded by an authorized release process. The image is non-root, supports linux/amd64 and linux/arm64, and defaults to stdio:
docker run --rm -i ghcr.io/hmrdkn-labs/pak-satpam@sha256:<immutable-digest>For private HTTP, run dist/http-cli.js, mount the configuration and secret files read-only, and pass the same environment variables shown above. The container entrypoint is node; the command selects the transport.
Local source checkout
For development or verification from this repository:
npm ci
npm run build
npm run validateThe controlled GitHub Actions fixture at .github/workflows/goal14-controlled-fixture.yml is a test-only failure/rerun reference and is not a production workflow.
Profiles
Profile | Transport | Provider requirement | Client endpoint |
observability-only | private HTTP | metrics, alerts, Grafana, policy | /mcp |
ci-only | private HTTP | one enabled CI provider and CI allowlist | /mcp/ci |
combined | private HTTP | observability and one enabled CI provider | /mcp and /mcp/ci |
stdio | local stdio | none; deterministic fake provider | process stdin/stdout |
private-http | example name for observability HTTP | same as observability-only | /mcp |
The configuration parser requires version: 1. Observability profiles require providers and policy. CI profiles require ci.enabled: true; CI cannot be enabled in observability-only. The CI-only profile does not require Grafana configuration or a Grafana credential.
Provider Matrix
Provider | CI read contract | SCM read contract | Mutation | Credentials |
GitHub Actions | status, failed-job analysis, redacted logs, dry-run remediation, failure analysis, optional telemetry/SCM | GitHub commits, comparisons, and pull requests | approval-gated failed jobs only | GitHub App files; separate read/write token paths are enforced by the adapter |
Jenkins | status, failed-job analysis, redacted console evidence, dry-run remediation, failure analysis, optional telemetry/SCM | configured multibranch job change evidence | unsupported | anonymous read or username/API token; credentialed transport requires HTTPS |
Bitbucket Cloud | pipeline status, failed-job analysis, redacted logs, dry-run remediation, failure analysis, optional telemetry/SCM | pull-request identity, diffstat, bounded diff evidence | unsupported | username:token or token plus username in a 0600 file; HTTPS required |
Bitbucket Data Center | contract-only | contract-only | unsupported | contract artifact only; no built-in adapter or supported runtime profile |
Provider identity is metadata, not a caller-selected URL. GitHub Actions emits github-actions and SCM emits github; Bitbucket Cloud emits bitbucket-cloud. Run and job identifiers remain provider-native strings, including numeric strings and supported UUID forms. Pak Satpam does not invent a cross-provider numeric ID.
URL And Reverse-Proxy Semantics
Provider configuration accepts exactly one of these forms:
base_url: https://ci.example.test/reverse-proxy/2.0or:
endpoint:
origin: https://ci.example.test
path: /reverse-proxy/2.0base_url is parsed into the same origin plus path pair. The origin must not contain credentials, query data, or fragments. endpoint.origin must be only an HTTP(S) origin, and endpoint.path must be an absolute path without query or fragment. Do not configure both forms.
Provider request paths are appended under the configured path exactly once. A request for /repositories/... therefore becomes https://ci.example.test/reverse-proxy/2.0/repositories/..., never .../2.0/reverse-proxy/2.0/.... Absolute provider request URLs are accepted only when their origin matches the configured origin. Redirects are rejected.
GitHub is restricted to the HTTPS api.github.com origin. Jenkins allows explicit loopback HTTP only for anonymous development; credentials always require HTTPS. Bitbucket credentials always require HTTPS. A reverse proxy does not change the provider capability or authorization policy.
Evidence And Budgets
Every result includes schema version 1.0, observation time, provider class, freshness, truncation, redaction status, warnings, and normalized data.
Observability: at most 25 services, 100 alerts, 50 metric series, 1,440 samples per series, and a 24-hour query/range window. Metric steps are 1 second to 1 hour. Panel renders are at most 1,600 x 900 and dashboards at most 2,400 x 4,000; the visual adapter also enforces byte, timeout, and concurrency limits.
CI: one log call accepts at most 200 redacted lines. Provider responses are capped at 2 MiB and freshness defaults to 300 seconds, configurable up to 3,600 seconds. Failure analysis accepts at most 10 jobs, 200 log lines, 25 changed files, 40 lines per hunk request, and 20 telemetry signals.
SCM: direct ci.scm_change_evidence has six budgets: maxBytes (256 KiB maximum, 64 KiB default), maxFiles (100 maximum, 100 default), maxHunks (100 maximum, 50 default), maxLines (10,000 maximum, 2,000 default), maxProviderRequests (16 maximum, 4 default), and maxDurationMs (60,000 maximum, 10,000 default). Results report both limits and usage.
Aggregate failure analysis: maxFiles 1-25, maxHunks 1-100, maxLines 1-200, maxBytes 1 KiB-256 KiB, maxProviderRequests 2-32, and a positive time window no longer than 24 hours. Defaults derive from requested changes/log lines, with 64 KiB and 16 provider requests.
Telemetry contract: metric, alert, log, and trace references are bounded to 100 items; metric samples are bounded to 1,440 per series; correlation windows are at most 24 hours. The current runtime bridge supplies named metrics only. It does not fetch raw logs or traces and never claims causality.
Observer: defaults are a 30-second poll, 5-minute overlap, 24-hour initial lookback, 1-hour stale threshold, 100 items per page, and two pages per target. Failed jobs default to 5, log lines to 80, payloads to 128 KiB, delivery attempts to 4, delivery timeout to 10 seconds, and lease time to 60 seconds. Each value has a strict schema maximum; pagination truncation is degraded health, not silent cursor advancement.
Oversized or unavailable evidence is marked explicitly. Raw provider payloads, raw logs, credentials, and image bytes do not become normal logs or durable observer state.
CLI Aliases And Doctor
Command | Function |
pak-satpam | current stdio server alias |
observability-agent-mcp | preserved stdio alias |
pak-satpam-http | private Streamable HTTP server |
pak-satpam-doctor | metadata-only runtime readiness diagnostic |
observability-agent-mcp-observer | optional observer companion |
observability-agent-mcp-approval / observability-agent-mcp-approve | operator approval CLI aliases |
Run the doctor with paths, never with secret values:
npx pak-satpam-doctor \
--config /private/path/provider-config.yml \
--mcp-token /private/path/mcp-token \
--grafana-token /private/path/grafana-tokenFor ci-only, omit --grafana-token. The doctor reports profile, provider metadata, and file readiness without printing file contents.
Operator Workflow And Rollback
Copy one profile example into a private deployment directory.
Create regular 0600 files for each credential and approval key; do not commit them or put values in YAML.
Run pak-satpam-doctor and fix every error before starting HTTP.
Start the server on loopback or a private interface with exact allowed Host values. Verify /healthz, bearer denial, MCP initialization, tool discovery, and one read-only call.
For CI, verify the repository/workflow allowlist and provider capability metadata. Treat provider text as untrusted evidence. Follow observe -> analyze -> redact/bound -> dry-run plan -> one approval -> rerun failed jobs -> observe; the observer never performs the approval or rerun.
Pin releases by npm version or OCI digest and retain the previous known-good reference and metadata-only observer state.
To roll back, stop the new process, restore the prior pinned npm version or OCI digest with the same private configuration and credential file paths, and repeat the health/MCP read-only checks. Do not delete observer state during a rollback unless the deployment owner has confirmed a schema migration; state is metadata-only and exists to prevent duplicate delivery. A rollback does not revert provider-side changes, and Pak Satpam has no deployment or source rollback authority.
Hermes And External AI Boundary
Hermes, Tabby, or another AI client owns prompts, conversation state, and chat delivery. Pak Satpam returns evidence over MCP. The optional observer sends fresh success or failure events to operator-configured internal routes using an HMAC over timestamp.body, a deterministic request ID, bounded retries, and no raw log lines. The analysis route may trigger an external agent to call Pak Satpam's read-only CI tools; the observer itself does not run an LLM, browse, execute commands, rerun jobs, or send Discord/chat messages.
Documentation
License
Apache License 2.0. See LICENSE.
Maintenance
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
- 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/hmrdkn-labs/pak-satpam'
If you have feedback or need assistance with the MCP directory API, please join our Discord server