DevContext

DevContext

Enables coding agents to access live runtime observability data such as logs, deploys, and health metrics for evidence-based incident triage.

Category
Visit Server

README

DevContext

Python MCP License: MIT

DevContext is a prototype Model Context Protocol (MCP) server and CLI tool that provides AI coding assistants and engineers with runtime observability data (logs, deploys, and health metrics) to assist in incident triage.


Overview

Coding assistants can inspect source repositories and draft fixes, but they often lack visibility into what happens during runtime incidents (such as recent deployments, error rate spikes, disk saturation, or downstream API outages). DevContext is a proof-of-concept tool that exposes runtime context via a command-line interface (CLI) and standard MCP tool calls.


CLI & Tool Commands

DevContext can be run directly from the command line or registered as an MCP server.

1. devcontext diagnose

Runs automated incident triage against built-in datasets or custom files/folders:

# Diagnose built-in service dataset
devcontext diagnose --service order-processing

# Output raw JSON format
devcontext diagnose --service order-processing --json

# Point at custom log, deploy, and health paths (files or log directories)
devcontext diagnose --log-path /var/log/app/ --deploys-path deploys.json --health-path health.json

# Enable experimental Groq LLM extraction
devcontext diagnose --service order-processing --use-llm

2. devcontext serve

Starts the stdio MCP server for connection to MCP hosts (e.g. Claude Desktop, Antigravity):

devcontext serve

<img width="1920" height="1080" alt="demo_devcontext" src="https://github.com/user-attachments/assets/aaad8db0-bfff-4301-ac6d-c825fbe08aa6" />


Log Parsing Options

  1. Deterministic Parser (parser.py): Uses heuristics to sample log lines and attempt structure matching (JSON-lines, CSV, key-value pairs, or basic bracketed/space-delimited timestamps).
    • Limitation: Best suited for simple single-line logs. Complex multi-line stack traces or non-standard custom formats may fall back to basic line matching.
  2. Experimental LLM Extraction (extraction.py): Optionally sends log chunks to Groq's API (response_format={"type": "json_object"}) to extract structured event objects.
    • Limitation: Incurs API latency (~200–400ms) and token costs; falls back to the deterministic parser if the API key is missing or calls time out.

Data Source Options

  • Built-in Mock Data: Pass a service name (e.g. service_name="order-processing") to query the included demo data.
  • Custom File or Directory Paths:
    • log_path: Path to a single log file or a directory containing split .log / .txt files.
    • deploys_path: Path to a custom deploys.json file.
    • health_path: Path to a custom health.json file.

Evaluation & Test Scenarios

The repository includes an evaluation harness (eval.py) tested against 5 synthetic test scenarios:

Scenario Service Scenario Type Expected Outcome Result
scenario_1_bad_deploy payment-service Resource Limit Reduction Identify deploy f8a1c92 Pass
scenario_2_disk_full storage-service Disk Full (No recent deploy) Identify disk exhaustion (98%) Pass
scenario_3_memory_leak analytics-worker Memory Leak / OOM Identify memory saturation (97%) Pass
scenario_4_downstream_outage notification-service External API Outage Identify SendGrid 503 errors Pass
scenario_5_bad_migration user-service Failed Database Migration Identify deploy d4e912f Pass

Limitations & Scope

  • Small Test Suite: This evaluation suite contains 5 synthetic test cases created for validation. It is not an exhaustive production benchmark.
  • Heuristic Matching: diagnose() uses simple rules (e.g. checking if a deploy occurred within 10 minutes of the first error). Real-world infrastructure incidents are often more complex and may involve multiple interacting factors.

Architecture

┌─────────────────────────────────────────────────────────┐
│              CLI / MCP Clients                          │
│     (devcontext CLI / Claude Desktop / Antigravity)     │
└───────────────────────────┬─────────────────────────────┘
                            │ CLI Args / stdio JSON-RPC
┌───────────────────────────▼─────────────────────────────┐
│              DevContext Entry Point                     │
│               (cli.py / server.py)                      │
└───────────────────────────┬─────────────────────────────┘
                            │
┌───────────────────────────▼─────────────────────────────┐
│                 Diagnostic Core (tools.py)               │
└───────┬───────────────────┬─────────────────────┬───────┘
        │                   │                     │
┌───────▼───────────┐ ┌─────▼─────────────┐ ┌─────▼─────────────┐
│ Structure Parser  │ │ Deployment Engine │ │ Health Observer   │
│   (parser.py)     │ │ (deploys.json)    │ │ (health.json)     │
└───────┬───────────┘ └───────────────────┘ └───────────────────┘
        │
┌───────┴─────────────────────────────────────────┐
│  Groq API (Optional LLM log extraction)         │
└─────────────────────────────────────────────────┘

Quickstart & Setup

1. Installation

git clone https://github.com/your-username/devcontext.git
cd devcontext
pip install -e .

2. Diagnose a Service via CLI

devcontext diagnose --service order-processing

3. Register as an MCP Server (Claude Desktop)

Add DevContext to your claude_desktop_config.json:

{
  "mcpServers": {
    "devcontext": {
      "command": "devcontext",
      "args": [
        "serve"
      ]
    }
  }
}

4. Run Evaluation Suite

python eval.py

5. Optional API Key Setup

Copy .env.example to .env if using Groq for experimental LLM log extraction:

cp .env.example .env

Dependencies & Requirements

  • Python 3.10+
  • mcp (Model Context Protocol SDK)
  • groq (Optional, for LLM extraction)

Future Extensions

  • Pluggable Adapters: Connect directly to CloudWatch, Datadog, Grafana Loki, or Prometheus APIs.
  • Probabilistic Confidence Scores: Output root-cause probability distributions (e.g. 95% confidence: bad deploy) instead of single deterministic strings.
  • Automated Rollback Proposals: Generate validated git revert commits or Kubernetes patch specs alongside the diagnosis.

License

Distributed under the MIT 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
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
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
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