Skip to main content

MCP Registry

Experimental

MCP Registry is an experimental feature introduced in MLflow 3.15.0. APIs and behavior may change in future releases.

MLflow MCP Registry provides a centralized catalog for registering, versioning, and managing Model Context Protocol (MCP) servers. Built on the open MCP registry standard, it enables your organization to maintain a curated inventory of MCP servers that users and agents can discover and connect to, with full version control and lifecycle management. You can import servers directly from the official MCP registry or register your own.

Key Benefits

Centralized Catalog

Maintain a single source of truth for all MCP servers in your organization. Search, browse, and discover available servers and their capabilities.

Version Control

Track server configurations with semantic versioning. Compare versions side-by-side and manage status transitions from draft to active to deprecated.

Tool Discovery

Automatically discover and catalog the tools that each MCP server exposes. Refresh tool snapshots on demand as servers evolve.

Manage Access

Define and manage connection endpoints for each server, pinned to a specific version or alias. Generate ready-to-use connection instructions for Claude Code, .mcp.json, and more.

Getting Started

1. Register an MCP Server

What is server.json?

The server.json file follows the open MCP registry standard and describes an MCP server's metadata, packages, and remote endpoints. Many popular MCP servers publish one in their GitHub repository. You can also browse the official MCP registry to find servers and import their server.json into MLflow.

Create MCP Server UI

  1. Run mlflow server in your terminal to start the MLflow UI.
  2. Navigate to the MCP Registry section in the sidebar.
  3. Click the Create MCP server button.
  4. Enter a display name and edit the server.json payload with the server's configuration.
  5. Click Create to register the server.

2. Browse Registered Servers

MCP Registry Server List

The MCP Registry page displays all registered servers in a searchable grid or list view. You can filter by status, search by name, and toggle between grid and list layouts.

3. Create an Access Endpoint

Access endpoints define how users and agents connect to a running MCP server instance. Each endpoint pairs a URL and transport type with a specific server version or alias.

Create Access Endpoint

  1. Open the MCP server detail page.
  2. In the Access Endpoints section, click Create endpoint.
  3. Enter the endpoint URL and select the transport type.
  4. Pin the endpoint to a specific version or alias.
  5. Click Create to save.

Concepts

Entity Model

The MCP Registry is organized around three core entities:

EntityDescription
MCPServerThe logical server entry. Identified by a namespaced name (e.g., io.github.anthropic/brave-search). Holds metadata like display name, description, icons, and tags.
MCPServerVersionA specific version of a server's configuration, identified by a semver string (e.g., 1.0.0). Contains the server_json payload, tool definitions, and a status (draft, active, deprecated, or deleted).
MCPAccessEndpointA connection endpoint (URL + transport type) pinned to a specific version or alias. Defines how users and agents actually connect to a running MCP server instance.

Server Naming Convention

Server names follow a reverse-DNS namespace format:

text
<namespace>/<server-slug>

For example: io.github.anthropic/brave-search, com.acme/internal-tools.

Status Lifecycle

Each server version has a status that controls its visibility and usability:

text
draft ⇄ active ⇄ deprecated
│ │
└───→ deleted ←──────┘
  • Draft: Initial state. The version is being prepared and is not yet available for use.
  • Active: The version is ready for production use.
  • Deprecated: The version is still accessible but should be replaced with a newer version.
  • Deleted: The version is no longer available.

Next Steps