- Explore MCP Servers
- elastic_mcp-server-elasticsearch
Elastic Mcp Server Elasticsearch
What is Elastic Mcp Server Elasticsearch
elastic_mcp-server-elasticsearch is a server that connects MCP Clients to Elasticsearch data using the Model Context Protocol (MCP). It allows users to interact with Elasticsearch indices through natural language queries.
Use cases
Use cases include querying Elasticsearch data for insights, generating reports based on natural language queries, and integrating Elasticsearch functionality into applications for enhanced user interaction.
How to use
To use elastic_mcp-server-elasticsearch, configure your MCP Client (like Claude Desktop) with the server’s settings, including your Elasticsearch URL and authentication credentials. Once configured, start a conversation in the MCP Client to interact with your Elasticsearch data.
Key features
Key features include listing available Elasticsearch indices, retrieving field mappings for specific indices, and performing searches using Elasticsearch’s query DSL.
Where to use
elastic_mcp-server-elasticsearch can be used in various fields such as data analysis, business intelligence, and application development where natural language processing of Elasticsearch data is beneficial.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Elastic Mcp Server Elasticsearch
elastic_mcp-server-elasticsearch is a server that connects MCP Clients to Elasticsearch data using the Model Context Protocol (MCP). It allows users to interact with Elasticsearch indices through natural language queries.
Use cases
Use cases include querying Elasticsearch data for insights, generating reports based on natural language queries, and integrating Elasticsearch functionality into applications for enhanced user interaction.
How to use
To use elastic_mcp-server-elasticsearch, configure your MCP Client (like Claude Desktop) with the server’s settings, including your Elasticsearch URL and authentication credentials. Once configured, start a conversation in the MCP Client to interact with your Elasticsearch data.
Key features
Key features include listing available Elasticsearch indices, retrieving field mappings for specific indices, and performing searches using Elasticsearch’s query DSL.
Where to use
elastic_mcp-server-elasticsearch can be used in various fields such as data analysis, business intelligence, and application development where natural language processing of Elasticsearch data is beneficial.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Elasticsearch MCP Server
Connect to your Elasticsearch data directly from any MCP Client (like Claude Desktop) using the Model Context Protocol (MCP).
This server connects agents to your Elasticsearch data using the Model Context Protocol. It allows you to interact with your Elasticsearch indices through natural language conversations.
Available Tools
list_indices
: List all available Elasticsearch indicesget_mappings
: Get field mappings for a specific Elasticsearch indexsearch
: Perform an Elasticsearch search with the provided query DSL
Prerequisites
- An Elasticsearch instance
- Elasticsearch authentication credentials (API key or username/password)
- MCP Client (e.g. Claude Desktop)
Demo
https://github.com/user-attachments/assets/5dd292e1-a728-4ca7-8f01-1380d1bebe0c
Installation & Setup
Using the Published NPM Package
[!TIP]
The easiest way to use Elasticsearch MCP Server is through the published npm package.
-
Configure MCP Client
- Open your MCP Client. See the list of MCP Clients, here we are configuring Claude Desktop.
- Go to Settings > Developer > MCP Servers
- Click
Edit Config
and add a new MCP Server with the following configuration:
{ "mcpServers": { "elasticsearch-mcp-server": { "command": "npx", "args": [ "-y", "@elastic/mcp-server-elasticsearch" ], "env": { "ES_URL": "your-elasticsearch-url", "ES_API_KEY": "your-api-key" } } } }
-
Start a Conversation
- Open a new conversation in your MCP Client
- The MCP server should connect automatically
- You can now ask questions about your Elasticsearch data
Configuration Options
The Elasticsearch MCP Server supports configuration options to connect to your Elasticsearch:
[!NOTE]
You must provide either an API key or both username and password for authentication.
Environment Variable | Description | Required |
---|---|---|
ES_URL |
Your Elasticsearch instance URL | Yes |
ES_API_KEY |
Elasticsearch API key for authentication | No |
ES_USERNAME |
Elasticsearch username for basic authentication | No |
ES_PASSWORD |
Elasticsearch password for basic authentication | No |
ES_CA_CERT |
Path to custom CA certificate for Elasticsearch SSL/TLS | No |
Developing Locally
[!NOTE]
If you want to modify or extend the MCP Server, follow these local development steps.
-
Use the correct Node.js version
nvm use
-
Install Dependencies
npm install
-
Build the Project
npm run build
-
Run locally in Claude Desktop App
- Open Claude Desktop App
- Go to Settings > Developer > MCP Servers
- Click
Edit Config
and add a new MCP Server with the following configuration:
{ "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" } } } }
-
Debugging with MCP Inspector
ES_URL=your-elasticsearch-url ES_API_KEY=your-api-key npm run inspector
This will start the MCP Inspector, allowing you to debug and analyze requests. You should see:
Starting MCP inspector... Proxy server listening on port 3000 🔍 MCP Inspector is up and running at http://localhost:5173 🚀
Example Questions
[!TIP]
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
- The MCP Client analyzes your request and determines which Elasticsearch operations are needed.
- The MCP server carries out these operations (listing indices, fetching mappings, performing searches).
- The MCP Client processes the results and presents them in a user-friendly format.
Security Best Practices
[!WARNING]
Avoid using cluster-admin privileges. Create dedicated API keys with limited scope and apply fine-grained access control at the index level to prevent unauthorized data access.
You can create a dedicated Elasticsearch API key with minimal permissions to control access to your data:
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 from your machine.
- Check that your authentication credentials (API key or username/password) have the necessary permissions.
- If using SSL/TLS with a custom CA, verify that the certificate path is correct and the file is readable.
- Look at the terminal output for error messages.
If you encounter issues, feel free to open an issue on the GitHub repository.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.