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.
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).
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"
}
}
}
}
Use the Correct Node.js Version:
shell
nvm use
Install Dependencies:
shell
npm install
Build the Project:
shell
npm run build
Run Locally in Claude Desktop App:
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"
}
}
}
}
shell
ES_URL=your-elasticsearch-url ES_API_KEY=your-api-key npm run inspector
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?"
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"]
}
]
}
}
}
For additional support, open an issue on the GitHub repository.