Skip to main content
Glama

Elasticsearch MCP Server

Apache 2.0
127
  • Apple
from typing import Dict, Optional from fastmcp import FastMCP class GeneralTools: def __init__(self, search_client): self.search_client = search_client def register_tools(self, mcp: FastMCP): @mcp.tool() def general_api_request(method: str, path: str, params: Optional[Dict] = None, body: Optional[Dict] = None): """Perform a general HTTP API request. Use this tool for any Elasticsearch/OpenSearch API that does not have a dedicated tool. Args: method: HTTP method (GET, POST, PUT, DELETE, etc.) path: API endpoint path params: Query parameters body: Request body """ return self.search_client.general_api_request(method, path, params, body)

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cr7258/elasticsearch-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server