1. Conduid
  2. Automation
  3. mlops-mcp-server
MCP server · Automation

mlops-mcp-server

MCP server for common MLOps workflows

Unclaimed automation
37Low

Scored 4 months ago · breakdown

About mlops-mcp-server

mlops-mcp-server is an MCP server in the Automation category: mCP server for common MLOps workflows. It has been installed 0 times through Conduid.

Install

uvx
uvx mlops-mcp-server
pip
pip install mlops-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about mlops-mcp-server

Powered by Claude · Grounded in docs

I know everything about mlops-mcp-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

MLOps MCP Server

PyPI

MCP server for common MLOps workflows

An MCP (Model Context Protocol) server that gives AI assistants like Claude direct access to MLOps workflows — experiment tracking, model registry, dataset management, pipeline orchestration, lineage tracing, and more. Wraps DVC, MLflow, and Git rather than replacing them.


Features

  • Experiment tracking — create runs, log params/metrics/artifacts, compare runs, find best run, export to CSV
  • Model registry — register, promote, tag, deprecate, and compare model versions; generate model cards
  • Dataset management — profile datasets, validate schemas, detect statistical drift (KS-test), split, merge, and generate dataset cards
  • Pipeline management — create, validate, and visualize DAG pipelines as Mermaid diagrams; cycle detection via Kahn's algorithm
  • Data lineage — record artifact lineage, trace provenance with BFS, visualize as Mermaid graphs, check integrity
  • File operations — full file/directory CRUD, content search, disk usage, batch operations
  • Project scaffolding — 7 ML project templates with component injection and structure validation
  • Documentation generation — model cards, dataset cards, experiment reports, pipeline docs, project READMEs, API docs
  • MLflow integration — optional; wraps tracking, registry, and artifact operations
  • DVC integration — optional; wraps data versioning and pipeline reproduction
  • Git operations — optional; status, add, commit, log, .gitignore generation
  • Environment tools — scan imports, generate requirements, check conflicts, create conda env files

Tools are registered in two tiers: a small set of always-on tools for quick file ops and discovery, and 15 domain modules you activate on demand to avoid flooding the agent context window.


Installation

Install directly from GitHub (available now)

pip install git+https://github.com/anant-patankar/mlops-mcp-server.git

Using uv:

uv add git+https://github.com/anant-patankar/mlops-mcp-server.git

Install from PyPI (coming soon)

# Core install
pip install mlops-mcp-server

# With optional extras
pip install mlops-mcp-server[mlflow]
pip install mlops-mcp-server[mlflow,compare,notebooks,parquet]

Using uv:

uv add mlops-mcp-server
uv add "mlops-mcp-server[mlflow,compare,notebooks,parquet]"

Usage

Claude Desktop

Add to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

First install the package, then add to your Claude Desktop config:

{
  "mcpServers": {
    "mlops": {
      "command": "mlops-mcp-server"
    }
  }
}

Restart Claude Desktop. The server starts automatically when Claude connects.

Example prompts

Once connected, you can ask Claude things like:

"Show me all experiment runs, find the one with the best validation accuracy, and register that model in the registry."

"Profile data/train.csv, check it against schema.yaml, then split it 70/15/15 and save to data/splits/."

"Create a pipeline with three stages: preprocess → train → evaluate, validate it for cycles, and show me the Mermaid diagram."

Running directly

mlops-mcp-server

Optional Dependencies

Extra Installs Enables
mlflow mlflow MLflow tracking and registry tools
compare deepdiff Structured diff in compare_runs
notebooks nbformat Notebook summary in get_notebook_summary
parquet pyarrow Parquet read/write in dataset tools
models joblib, onnx, safetensors Model file format support
validation pandera, scipy Schema validation and drift statistics
templates jinja2 Jinja2 templates in create_model_card

All extras are optional — the server runs without them and returns clear errors if a missing dependency is needed.


License

MIT — see LICENSE.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About mlops-mcp-server

How do I install mlops-mcp-server?

Run uvx mlops-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is mlops-mcp-server safe to use with an AI agent?

Its trust score is 37 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is mlops-mcp-server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.