Elasticsearch MCP Server
Exposes Elasticsearch semantic search capabilities as MCP tools, enabling ELSER, kNN, and hybrid search with automatic index setup.
README
Elasticsearch MCP Server
A Model Context Protocol (MCP) server that exposes Elasticsearch semantic search capabilities as MCP tools. This server is optimized for Elasticsearch Serverless and managed Elastic Cloud clusters.
🚀 Features
- Semantic Search: Use ELSER (sparse) or kNN (dense) directly within Elasticsearch.
- Hybrid Search: Combine keyword (BM25) and semantic scores.
- Automatic Setup: Tools to create indices with the correct mappings and ingest pipelines in one click.
- Serverless Ready: Fully compatible with Elasticsearch Serverless and API Key authentication.
🛠️ Quickstart
1. Configure Environment
Edit the .env file with your connection details:
ELASTICSEARCH_HOSTS=https://your-serverless-endpoint.es.us-east-1.aws.elastic.cloud:443
ELASTICSEARCH_API_KEY=your_api_key
2. Verify Connection
Run the verification suite to ensure your cluster is reachable and tools are registered:
.\venv\Scripts\python.exe verify_server.py
2. Run the Web API (Standard REST)
Start the web server with a simple command:
elasticsearch-api
- API URL:
http://localhost:8000 - Interactive Docs:
http://localhost:8000/docs
3. Run the MCP Server (For AI Editors)
Start the MCP server with a simple command:
elasticsearch-mcp
🧩 Claude Desktop Integration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"elasticsearch": {
"command": "C:\\Users\\birar\\Desktop\\elasticsearch-mcp-server\\venv\\Scripts\\python.exe",
"args": ["-m", "elasticsearch_mcp"],
"env": {
"ELASTICSEARCH_HOSTS": "https://your-cluster-url.es.aws.elastic.cloud:443",
"ELASTICSEARCH_API_KEY": "your_api_key_here"
}
}
}
}
🛠️ Available Tools
es_ping: Check connectivity.es_setup_elser_index: Create a semantic index for ELSER.es_setup_dense_index: Create a semantic index for dense vectors (kNN).es_index_document: Index data through a pipeline.es_semantic_search_elser: Perform sparse semantic search.es_semantic_search_knn: Perform dense kNN search.es_semantic_search_hybrid: Combined keyword and semantic search.es_delete_index: Safely remove indices.
⚠️ Requirements
- Python 3.11+
- Elasticsearch 8.8+ (including Serverless)
- ML Models: ELSER or E5 must be available/deployed in your cluster for semantic search tools to function.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.