Elasticsearch MCP Server
An MCP server that enables AI assistants to directly interact with Elasticsearch for searching, aggregating, and retrieving documents from indices, supporting full-text search, semantic search, and various query modes.
README
Elasticsearch MCP Server
An MCP (Model Context Protocol) server that gives AI assistants like Claude direct access to Elasticsearch. Search, aggregate, and retrieve documents from any index — all exposed as MCP tools over a Streamable HTTP transport.
Quickstart
With Docker (recommended)
docker build -t elasticsearch-mcp .
docker run -e ES_URL=http://host.docker.internal:9200 -p 3100:3100 elasticsearch-mcp
Without Docker
Requires Node.js 22+.
npm install
npm run build
ES_URL=http://localhost:9200 npm start
Connect to Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"elasticsearch": {
"type": "streamable-http",
"url": "http://localhost:3100/mcp"
}
}
}
Sample prompts
Once connected, try asking Claude things like:
- "What indices do I have? Pick the most interesting one and tell me what fields are available."
- "Search the
logsindex for timeout errors in the last 24 hours and summarize what's going wrong." - "Which users have the most failed login attempts? Break it down by country."
- "Find all documents mentioning 'rate limit' and show me the top 5 with highlights."
- "How many orders were placed each month this year? Plot the trend."
- "Compare how often these product names appear across the catalog: 'widget', 'gadget', 'gizmo', 'doohickey'."
- "Pull up document
abc-123and give me a plain-English summary." - "What are the most common values in the
statusfield? Are any of them suspicious?"
Tools
list_indices
List all Elasticsearch indices with doc counts, storage size, health, and status. Accepts an optional glob pattern to filter index names.
get_mapping
Get field names and types for an index.
search
Full-text search with query modes: match, match_phrase, multi_match, query_string. Supports filters, sorting, pagination, highlighting, field selection, and minimum score thresholds.
count
Count documents matching a query with optional filters.
multi_count
Count multiple phrases in one call using msearch. Useful for co-occurrence analysis — can require an additional term to co-occur with each phrase.
get_document
Retrieve a single document by _id or document_id field value. Long text fields are truncated by default.
aggregate
Run aggregations on an index:
- terms — Top values by frequency
- stats — min/max/avg/sum/count for numeric fields
- date_histogram — Monthly bucketing for date fields
- top_hits — Sample documents per bucket
- cardinality — Distinct value count
- filter — Filtered document count
Supports sub-aggregations for nested analysis (e.g., terms + stats).
Configuration
| Variable | Default | Description |
|---|---|---|
ES_URL |
http://localhost:9200 |
Elasticsearch URL |
ES_API_KEY |
— | API key for Elasticsearch authentication (optional) |
PORT |
3100 |
HTTP port the server listens on |
Endpoints
| Path | Method | Description |
|---|---|---|
/mcp |
POST |
MCP protocol (Streamable HTTP transport) |
/health |
GET |
Health check (returns ok) |
Semantic & Hybrid Search
The search tool also supports two additional modes for indices with dense_vector fields:
- semantic — kNN vector search using a built-in all-MiniLM-L6-v2 embedding model (384 dimensions). No external embedding API needed.
- hybrid — Runs keyword + semantic in parallel and fuses results with Reciprocal Rank Fusion (k=60).
Set search_mode to semantic or hybrid and specify the embedding_field (defaults to text_embedding).
The embedding model is downloaded on first use and cached locally. The Docker image pre-downloads it at build time. Use TRANSFORMERS_CACHE to control where the model is stored.
| Variable | Default | Description |
|---|---|---|
TRANSFORMERS_CACHE |
(system default) | Directory to cache the embedding model |
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。