observer-launch-mcp
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., "@observer-launch-mcpshow recent errors from launch-management"
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.
observer-launch-mcp
Ask Claude questions about your Observe data -- recent errors, common failures, log volume by pod -- without writing OPAL by hand. This is an MCP server that gives Claude direct, live access to your Observe tenant.
Setup (2 steps)
1. Run the setup wizard. It asks for your Observe credentials and dataset aliases, then registers itself with Claude Code automatically:
npx @aryanbansal-launch/observer-launch-mcp initYou'll be asked for:
Observe customer ID -- a number, found in your Observe URL.
Observe API key -- create one at Manage account → My API tokens. (Not an ingest/datastream token -- those look similar but don't work here.)
Cluster -- e.g.
eu-1. Leave blank if you're on the default US tenant.Dataset aliases (optional) -- friendly names for datasets you'll ask about often, e.g.
launch-management→41249178. Find the ID in the Observe UI: open a dataset, it's in the URL. You can skip this and use raw dataset IDs instead, or add aliases later.
2. Restart Claude Code (or start a new session) so it picks up the new server. Confirm it worked:
Is the Observe connection working?That's it -- the other tools below are now available in chat.
claude mcp add observe -s user \
-e OBSERVE_CUSTOMER_ID=<your id> \
-e OBSERVE_API_KEY=<your token> \
-e OBSERVE_CLUSTER=eu-1 \
-e OBSERVE_DATASETS='{"launch-management":"41249178"}' \
-- node <path to installed server.js>Run npx @aryanbansal-launch/observer-launch-mcp init once first if you just
want that absolute path -- it prints the exact command it would run, right
before running it. Use a direct node <path> command, not npx <package>
as the final entry -- Claude Code spawns registered servers with a bare
environment (no PATH), and npx's own shebang needs PATH to find node, so
npx-as-command silently shows "Failed to connect." The wizard already
avoids this for you.
Related MCP server: Fathom AI MCP Server
What you can ask
Once it's set up, just talk to Claude naturally:
"Is the Observe connection working?"
"What service/dataset aliases do I have configured?"
"Show me recent errors from launch-management in the last hour"
"What's our most common error in launch-nginx this week?"
"Which pods are logging the most in launch-management-bg right now?"
"How much stderr output is launch-nginx producing in the last 6 hours?"
"Count log lines per pod in launch-telemetry over the last hour"
"Pull the last 20 raw log lines from launch-logs-bg-exporter"
For anything not covered by a specific question shape, just describe what you want -- Claude will write the OPAL pipeline for you using the general query tool.
Tools reference
Tool | Use for |
| "Is the connection working?" |
| "What datasets/aliases do I have?" |
| Recent raw errors for one service, most recent first |
| Top recurring errors ranked by count -- fast even over days/weeks |
| Log counts grouped by pod/node/container/stream/namespace |
| Anything else -- arbitrary OPAL pipeline against any dataset |
get_error_summary and get_log_stats aggregate server-side, so they stay
fast regardless of the time window. get_service_errors and run_opal_query
will add a warning if you query a 6h+ window without aggregating, since raw
row dumps over a wide window risk Observe's 100k row cap.
Configuration reference
Variable | Required | Description |
| yes | Your Observe customer ID (numeric). |
| yes | A bearer token from Manage account → My API tokens (or a service account token for long-lived use). |
| no | e.g. |
| no | Full override if your tenant doesn't follow the |
| no | Query timeout in seconds (default 300). |
| no | Inline JSON mapping alias → dataset ID, e.g. |
| no | Path to a JSON file with the same shape, for larger configs. |
Dataset IDs are tenant-specific and intentionally not bundled with this package. Without any configured, alias lookups fall through and you can still pass raw numeric dataset IDs directly to any tool.
Troubleshooting
Health check fails → your API key is probably an ingest/datastream token, not one from Manage account → My API tokens. Regenerate it.
claude mcp listshows "Failed to connect" on a manually-registered entry → check the command isnode <path>, notnpx <package>(see the callout above).A tool returns "Unknown service/dataset" → run
list_known_servicesto see what's configured, or pass a raw numeric dataset ID instead.get_service_errors/get_error_summaryreturn nothing useful → these assume your logs have a JSONlogcolumn shaped like{"level":"error","message":"...","context":"..."}. If your schema differs, adjust the pipeline insrc/run-server.ts.
Contributing
npm install
npm run build # tsc, then chmod +x on the bin entry
npm publish # only if you intend to ship a new versionCopy the get_error_summary/get_log_stats pattern in src/run-server.ts
for other recurring OPAL queries (e.g. cost-by-service, latency
percentiles) -- give the tool a descriptive name/description so Claude
picks it over run_opal_query when appropriate.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables natural language Kubernetes cluster operations, SLO monitoring, and PromQL queries via Claude using the Model Context Protocol.1MIT
- AlicenseNot gradedqualityBmaintenanceEnables Claude to access your Fathom meetings, transcripts, and AI summaries.2016MIT
- FlicenseAqualityDmaintenanceEnables Claude Desktop to access and query RBPaaS Operation Hub data, including business KPIs, project details, resource utilization, and agent schedules.16
- AlicenseNot gradedqualityDmaintenanceConnects Claude to OCI Logging Analytics for natural language querying and analysis of security logs, including detection catalog, MITRE ATT&CK integration, and cross-log correlation.1MIT
Related MCP Connectors
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/AryanBansal-launch/Observe-launch-mcp-draft'
If you have feedback or need assistance with the MCP directory API, please join our Discord server