DriftScope
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., "@DriftScopeCheck feature drift on the 'amount' column between baseline.csv and current.csv"
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.
š¬ DriftScope ā Autonomous MLOps & Statistical Diagnostics MCP Server
An open-source, cloud-deployed Model Context Protocol (MCP) server that equips Large Language Models (LLMs) with deterministic statistical computing engines to audit data drift and model degradation in production tabular pipelines.
š” The Problem
LLMs are exceptional at high-level reasoning, code generation, and root-cause analysis, but notoriously unreliable at precise statistical math. When monitoring machine learning pipelines, asking an LLM to evaluate distribution shift directly leads to severe numerical hallucinations.
DriftScope solves this by bridging the LLM to a dedicated Python analytical engine via the open Model Context Protocol:
The LLM handles orchestration, triage, hypothesis generation, and incident reporting.
DriftScope executes deterministic, vector-accelerated hypothesis testing (Two-sample Kolmogorov-Smirnov) and Population Stability Index (PSI) calculations using Polars and SciPy.
Related MCP server: Trustwise MCP Server
šļø Architecture
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā LLM Host ā
ā (Claude Desktop / Cursor / Custom Agent) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā JSON-RPC 2.0
ā¼ (mcp-remote bridge)
āāāāāāāāāāāāāāāāāāāāāāāāāā
ā Internet / HTTPS ā
āāāāāāāāāāāāāā¬āāāāāāāāāāāā
ā Server-Sent Events (SSE)
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā DriftScope MCP Server (Render) ā
ā āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ā
ā ā FastMCP Router ā ā
ā āāāāāāāāāā¬āāāāāāāāāāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāāāā¬āā ā
ā ā ā ā ā
ā ā¼ ā¼ ā¼ ā
ā [ Tools Engine ] [ Resources Hub ] [ Prompts ]ā
ā ⢠check_drift ⢠standards:// ⢠audit_ ā
ā ⢠compute_psi drift-policy feature ā
ā ⢠generate_mock ā
ā ā ā
ā ā¼ ā
ā [ Data Layer: Polars + SciPy + NumPy ] ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā⨠Features & MCP Primitives
1. š ļø Tools (Callable Actions)
check_feature_drift(baseline_csv, current_csv, feature_column, significance_level): Executes two-sample Kolmogorov-Smirnov (KS) tests to detect continuous covariate shift with rigorous $p$-values.compute_psi(baseline_csv, current_csv, feature_column, bins): Computes the Population Stability Index (PSI) with equal-frequency baseline binning and Laplace smoothing to classify shift severity (Stable,Moderate, orCritical).generate_mock_datasets(): Synthesizes baseline and drifted production samples on the fly for pipeline verification.
Supports both local cloud file paths and remote public HTTP/HTTPS URLs (AWS S3, GitHub raw, etc.).
2. š Resources (Passive Knowledge)
standards://drift-policy: Exposes organization-wide MLOps threshold standards (e.g., $p < 0.05$ rejection criteria, PSI warning zones) directly into the agent's context.
3. š Prompts (Reusable Workflows)
audit_feature: Pre-engineered diagnostic prompt guiding the model through end-to-end drift triage, impact evaluation, and retraining recommendations.
š Live Cloud Deployment
DriftScope is deployed as a live cloud service on Render utilizing the Server-Sent Events (SSE) transport.
Live SSE Endpoint:
https://driftscope-mcp.onrender.com/sse
š Quickstart: Connect to Claude Desktop
You can connect your local Claude Desktop to the live cloud deployment in seconds:
Open your Claude Desktop configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add
driftscope-cloudto yourmcpServersobject:
{
"mcpServers": {
"driftscope-cloud": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://driftscope-mcp.onrender.com/sse"
]
}
}
}Restart Claude Desktop. The šØ hammer icon will appear in the chat interface showing your active tools!
š Sample Interaction & Output
Prompt:
"Audit both the 'income' and 'age' features for drift using DriftScope and give me an MLOps summary."
Output:
## MLOps Drift Summary
| Feature | KS Stat | p-value | PSI Score | Verdict |
|---|---|---|---|---|
| income | 0.3960 | 0.00000 | 0.7060 | š“ Critical shift |
| age | 0.0840 | 0.05910 | 0.0230 | š¢ Stable |
Attention needed: income
- Both the KS test and PSI confirm income has drifted severely (p-value ā 0, PSI = 0.706 > 0.20 threshold).
- Recommendation: Upstream investigation required; trigger model retraining fallback pipeline.š» Local Development
Clone the repository and run locally using uv:
git clone https://github.com/Aymenrahmanii/driftscope-mcp.git
cd driftscope-mcp
# Install dependencies
uv sync
# Launch the interactive MCP Inspector UI
uv run mcp dev server.pyš¦ Tech Stack
Protocol: Model Context Protocol (MCP) Python SDK
Framework: FastMCP (Starlette, Uvicorn, SSE)
Data & Math: Polars, NumPy, SciPy, Scikit-learn, HTTPX
Infrastructure: Render Web Services, GitHub
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 Connectors
DriftOracle - 15 tools for model/data drift monitoring: PSI, KS-test, alerts, evidence packs.
Deterministic validation for AI-generated artifacts: JSON Schema, OpenAPI response, SQL syntax.
Sentiment, toxicity, entity extraction, PII, translation, summary, QA, fraud scoring, safety audit.
Synthetic checks, nightly regression replay and model-drift alerts for AI agents
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA local, agentic AI pipeline that analyzes tabular data, detects anomalies, and generates interpretive summaries using local LLMs orchestrated via the Model Context Protocol.-

Trustwise MCP Serverofficial
AlicenseNot gradedqualityCmaintenanceProvides advanced evaluation tools for assessing AI safety, alignment, and performance of LLM outputs. Enables programmatic evaluation of quality, safety metrics like toxicity and PII detection, and operational metrics including carbon footprint and cost estimation.4Apache 2.0- AlicenseAqualityBmaintenancePrediction stability engine for AI agents. Evaluate model stability, detect ghosts, probe any LLM for instability, monitor fleet drift. 20 tools + 1 resource. Works with Claude, Cursor, VS Code.20201-
- FlicenseNot gradedqualityDmaintenanceMonitors ML models in production for data drift and performance degradation, providing automated alerts and retraining recommendations.-