drio
Open app

Eunomia Mcp Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Eunomia MCP Server is an open-source data governance tool designed for LLM-based applications, enabling seamless integration with MCP servers to enforce data governance policies.

To use Eunomia MCP Server, clone the repository from GitHub, define your application settings and instruments in an Orchestra, and run the server using the uv command.

  • Enforces data governance policies on LLM and text-based pipelines. - Orchestrates multiple servers communicating via the MCP framework. - Supports integration with various instruments for data governance.
  1. Implementing PII detection in text streams.
  2. Managing user access control across multiple servers.
  3. Ensuring compliance with data governance regulations in LLM applications.

Add to your AI client

Use these steps to connect Eunomia Mcp Server 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": {
    "eunomia-mcp-server-whataboutyou-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eunomia-mcp-server-whataboutyou-ai"
      ]
    }
  }
}

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": {
    "eunomia-mcp-server-whataboutyou-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eunomia-mcp-server-whataboutyou-ai"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "eunomia-mcp-server-whataboutyou-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eunomia-mcp-server-whataboutyou-ai"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "eunomia-mcp-server-whataboutyou-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eunomia-mcp-server-whataboutyou-ai"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "eunomia-mcp-server-whataboutyou-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eunomia-mcp-server-whataboutyou-ai"
      ]
    }
  }
}

FAQ

Can Eunomia MCP Server integrate with any MCP server?

Yes! It is designed to work with any server that follows the MCP framework.

Is Eunomia MCP Server free to use?

Yes! It is an open-source project available for everyone.

How can I contribute to Eunomia MCP Server?

You can contribute by submitting issues or pull requests on the GitHub repository.