drio
Open app

mcp

Source

Python implementation of an Elasticsearch MCP server

Catalog onlyCatalog onlySTDIO

Overview

MCP is a Python implementation of an Elasticsearch MCP server designed to facilitate the management and configuration of Elasticsearch instances.

To use MCP, ensure you have Claude desktop installed and an instance of Elasticsearch running. Configure the .env file appropriately, then run the commands: - make add-claude-config - make run

  • Easy integration with Elasticsearch for configuration management. - Simple command-line interface for running and managing the server. - Supports configuration through environment variables.
  1. Managing Elasticsearch configurations in a development environment.
  2. Automating the setup of Elasticsearch instances.
  3. Facilitating quick deployments of Elasticsearch servers.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is required to run MCP?

You need Claude desktop and an instance of Elasticsearch running.

Is MCP open-source?

Yes, MCP is available on GitHub and can be freely used and modified.

How do I contribute to MCP?

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