drio
Open app

mcp-server-openmetadata

Source

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server-openmetadata is a Model Context Protocol (MCP) server implementation for OpenMetadata, enabling seamless integration with MCP clients. It provides a standardized way to interact with OpenMetadata through the Model Context Protocol.

To use the mcp-server-openmetadata, set up the server with the required environment variables for authentication, and run the server using the provided commands. You can also configure it with Claude Desktop or run it manually.

  • Implements Model Context Protocol for OpenMetadata. - Provides a REST API for various data assets, services, teams, users, and more. - Supports both token and basic authentication methods.
  1. Integrating OpenMetadata with various MCP clients.
  2. Managing data assets and services through a standardized API.
  3. Facilitating user and team management in OpenMetadata.

Add to your AI client

Use these steps to connect mcp-server-openmetadata in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-openmetadata-yangkyeongmo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-openmetadata-yangkyeongmo"
      ]
    }
  }
}

FAQ

What authentication methods are supported?

The server supports both token and basic authentication methods.

Can I run the server manually?

Yes, you can run the server manually using the command `python src/server.py`.

Is contribution to the project welcome?

Yes, contributions are welcome, and you can submit a Pull Request.