Tickets and Warehouse MCP Servers
Click on "Deploy 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., "@Tickets and Warehouse MCP ServersWhy does billing_reconcile keep failing, and cite your sources?"
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.
DataOps MCP Copilot
An auditable copilot for data operations. It answers operational questions over a synthetic company environment (issue tracker + pipeline warehouse) through MCP tool servers, cites every claim to the tool call it came from, and refuses to change anything without human approval.
Everything in this repo is synthetic: the company, the people, the pipelines, the incidents. There is no real employer data, code, or schema here. See docs/CLEAN_ROOM.md.
What it does
Two MCP servers expose the environment as tools:
tickets(search, read, propose changes) andwarehouse(pipeline health, runs, incidents, governed metrics).An agent loop drives those tools to answer questions. Every tool result is numbered, and the final answer cites those numbers, so any claim can be traced back to the exact output it came from.
Writes are proposal-only. The agent can propose a ticket update or comment; the proposal gets a token and sits in an approvals queue until a person approves it. The apply path refuses anything that was not approved first, and every step lands in an audit log.
A small web UI lets you ask questions, inspect the full trace (tool calls, arguments, results, latency), and work the approvals queue.
The seeded environment has a few stories to find: a deploy that broke a reconciliation job, a slow-burn latency creep, and a sev1 outage with follow-up tickets.
Related MCP server: Sentinel MCP Server
Requirements
Python 3.10+. SQLite by default; Postgres works by setting DATABASE_URL.
An OpenAI key is optional (needed only for the live model; the mock provider
runs everything offline).
Setup
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python -m dataops.seed # build the synthetic environmentRun it
Web UI (ask, traces, approvals):
uvicorn dataops.api:app --port 8000CLI:
python -m dataops.agent "Why does billing_reconcile keep failing?"By default the copilot uses the mock provider: a scripted, deterministic planner that needs no API key. To run against a live model:
export OPENAI_API_KEY=... # or drop it in .secrets/openai_key
COPILOT_PROVIDER=openai uvicorn dataops.api:appEvaluation
python -m evals.run_eval --provider mock --write-report25 fixed operational questions against a freshly seeded environment, scored on tool selection, grounded facts, and a no-mutation-without-approval safety check. Current results: 25/25 with the mock provider (deterministic, in CI); the same set passes with gpt-4o-mini (about $0.05 per full run). Details in docs/EVALUATION.md.
Tests
python -m pytest tests/Layout
dataops/
seed.py deterministic synthetic environment (fixed RNG seed)
models.py schema: pipelines, runs, incidents, tickets, approvals, audit
servers/ the two MCP servers (stdio)
client.py MCP hub: launches servers, namespaces tools
agent.py the copilot loop (tools -> cited answer)
guardrails.py the write gate: propose -> human approves -> apply
tracing.py per-question JSONL traces
providers/ openai (live) + mock (offline, deterministic)
api.py FastAPI app
static/index.html the UI, no build step
evals/ question set + scoring harness
tests/ pytest suite
docs/ architecture, design decisions, clean-room note, eval resultsNotes
The mock provider exists so reviewers can run everything without a key and CI stays deterministic. It is a scripted planner, not a model; the README calls that out rather than hiding it.
LLM-facing tools validate their enums and return corrective hints ("'urgent' is a severity, pass it as severity"). Models recover from these instead of concluding nothing exists.
The agent has a hard step ceiling; it would rather stop and say so than burn budget looping.
This server cannot be deployed
Maintenance
Related MCP Connectors
Agentic CI operations for build inspection, failure diagnosis, and runner troubleshooting.
A read-only verified record of agent-operable GTM tools: search, fetch, compare, track changes.
Runtime permission, approval, and audit layer for AI agent tool execution.
Supervised API-write gateway for AI agents with policy, human approval and execution receipts.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables SRE operations through natural language, providing tools to query SLO status, fetch runbooks, query alerts, and manage incidents with audit logging and latency tracking.-
- FlicenseNot gradedqualityBmaintenanceEnables autonomous infrastructure health management by exposing tools for retrieving system logs, querying a knowledge base, executing SQL analytics, and simulating system commands, all integrated into an AI-driven incident response workflow.-
- FlicenseNot gradedqualityCmaintenanceEnables controlled AI-agent access to enterprise-shaped tools with a deny-by-default gated write path, human approval, dry-run execution, and append-only audit logging.1-
- AlicenseNot gradedqualityCmaintenanceTurns any AI coding agent or MCP client into a governed DevOps engineer by exposing policy-enforced tools for Kubernetes, Docker, Jira, Git/PR, CI/CD, AWS, Terraform, and incident response, with approvals, audit logging, secret redaction, and rollback enforced outside the model.1Apache 2.0