mcp-elasticsearch
Provides read-only search and aggregation capabilities for Elasticsearch, including listing indices and retrieving mappings, enabling agents to query and inspect Elasticsearch data.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-elasticsearchlist all indices and show me the mapping for the logs index"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-elasticsearch
Elasticsearch MCP Server (Model Context Protocol) - read-only search only.
Features
Only exposes read-only operations:
list_indices- List all indicesget_mapping- Get index mappingsearch- Execute search/aggregation query
Related MCP server: Elasticsearch MCP Server
Supports two transport modes
1. stdio (for local/standalone deployment)
python -m mcp_elasticsearch --transport stdio --url http://localhost:92002. sse (for remote/containerized deployment)
python -m mcp_elasticsearch --transport sse --host 0.0.0.0 --port 8002 --url http://elasticsearch:9200 [--api-key your-secret-key]Environment variables
All command line arguments can also be set via environment variables:
TRANSPORT-stdioorsse(default:stdio)HOST- bind host for sse mode (default:0.0.0.0)PORT- bind port for sse mode (default:8002)ELASTICSEARCH_URL- Elasticsearch URLAPI_KEY- Optional API key for client authentication
Docker
FROM python:3.11-slim
WORKDIR /app
COPY pyproject.toml poetry.lock ./
RUN poetry install --no-dev --no-root
COPY mcp_elasticsearch/ ./mcp_elasticsearch/
EXPOSE 8002
CMD ["python", "-m", "mcp_elasticsearch"]This server cannot be deployed
Maintenance
Related MCP Connectors
Read-only MCP access to sessions, funnels, campaigns, errors, live visitors, and anomalies.
Read-only MCP for identity resolution and write guardrails.
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Provides read access to your GKE and Kubernetes resources.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that enables interaction with Elasticsearch and OpenSearch clusters for searching documents and managing indices. It provides tools for cluster health monitoring, index configuration, and general API requests.16Apache 2.0
- AlicenseNot gradedqualityFmaintenanceA read-only MCP server for Elasticsearch 7.10 clusters, providing tools for cluster info, health, index listing, and Query DSL search with Google OAuth and Bearer token authentication.8MIT
- AlicenseNot gradedqualityDmaintenanceMCP server that provides tools and resources to interact with Elasticsearch clusters, including listing indices, searching, and retrieving mappings.3MIT
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server for Elasticsearch log querying. Enables natural language search, filtering, context retrieval, and aggregation of logs.-