mcp_server_elasticsearch

mcp_server_elasticsearch

by elastic
Enables natural language interaction with Elasticsearch data using the Model Context Protocol (MCP).

Elasticsearch MCP Server: Seamless Integration with MCP Clients

The Elasticsearch MCP Server enables direct interaction with your Elasticsearch data through MCP Clients like Claude Desktop using the Model Context Protocol (MCP). This server bridges the gap between your Elasticsearch indices and natural language conversations, making it easier to query and analyze your data.

Elasticsearch Server MCP server


Features

  • List Indices: View all available Elasticsearch indices.
  • Get Mappings: Inspect field mappings for specific indices.
  • Search: Execute Elasticsearch queries using full Query DSL capabilities with automatic highlighting.

Prerequisites

To use the Elasticsearch MCP Server, you’ll need:
- An active Elasticsearch instance.
- An Elasticsearch API key with appropriate permissions.
- An MCP Client (e.g., Claude Desktop).


Installation & Setup

Using the Published NPM Package

  1. Configure MCP Client:
  2. Open your MCP Client (e.g., Claude Desktop).
  3. Navigate to Settings > Developer > MCP Servers.
  4. Add a new MCP Server with the following configuration:

json { "mcpServers": { "elasticsearch-mcp-server": { "command": "npx", "args": ["-y", "@elastic/mcp-server-elasticsearch"], "env": { "ES_URL": "your-elasticsearch-url", "ES_API_KEY": "your-api-key" } } } }

  1. Start a Conversation:
  2. Open a new conversation in your MCP Client.
  3. The MCP server will connect automatically.
  4. Begin querying your Elasticsearch data using natural language.

Developing Locally

  1. Use the Correct Node.js Version:
    shell nvm use

  2. Install Dependencies:
    shell npm install

  3. Build the Project:
    shell npm run build

  4. Run Locally in Claude Desktop App:

  5. Open Claude Desktop App.
  6. Navigate to Settings > Developer > MCP Servers.
  7. Add a new MCP Server with the following configuration:

json { "mcpServers": { "elasticsearch-mcp-server-local": { "command": "node", "args": ["/path/to/your/project/dist/index.js"], "env": { "ES_URL": "your-elasticsearch-url", "ES_API_KEY": "your-api-key" } } } }

  1. Debugging with MCP Inspector:
    shell ES_URL=your-elasticsearch-url ES_API_KEY=your-api-key npm run inspector

Example Questions

Here are some natural language queries you can try with your MCP Client:
- "What indices do I have in my Elasticsearch cluster?"
- "Show me the field mappings for the 'products' index."
- "Find all orders over $500 from last month."
- "Which products received the most 5-star reviews?"


How It Works

  1. The MCP Client analyzes your request and determines the necessary Elasticsearch operations.
  2. The MCP Server executes these operations (e.g., listing indices, fetching mappings, performing searches).
  3. The MCP Client processes the results and presents them in a user-friendly format.

Security Best Practices

  • Avoid using cluster-admin privileges.
  • Create dedicated API keys with limited scope.
  • Apply fine-grained access control at the index level.

Example API Key Creation:

POST /_security/api_key
{
  "name": "es-mcp-server-access",
  "role_descriptors": {
    "mcp_server_role": {
      "cluster": ["monitor"],
      "indices": [
        {
          "names": ["index-1", "index-2", "index-pattern-*"],
          "privileges": ["read", "view_index_metadata"]
        }
      ]
    }
  }
}

Troubleshooting

  • Ensure your MCP configuration is correct.
  • Verify that your Elasticsearch URL is accessible.
  • Check that your API key has the necessary permissions.
  • Review terminal output for error messages.

For additional support, open an issue on the GitHub repository.


About

www.elastic.co/elasticsearch

Topics

License

Apache-2.0 license

Security Policy

Security policy

Features & Capabilities

Categories
mcp_server model_context_protocol elasticsearch javascript api_integration search claude

Implementation Details

Stats

0 Views
21 GitHub Stars

Repository Info

elastic Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300