Elasticsearch MCP Server

# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - elasticHost - elasticUsername - elasticPassword properties: elasticHost: type: string description: The host URL of the Elasticsearch cluster. elasticUsername: type: string description: The username for Elasticsearch authentication. elasticPassword: type: string description: The password for Elasticsearch authentication. commandFunction: # A function that produces the CLI command to start the MCP on stdio. |- (config) => ({ command: 'elasticsearch-mcp-server', env: { ELASTIC_HOST: config.elasticHost, ELASTIC_USERNAME: config.elasticUsername, ELASTIC_PASSWORD: config.elasticPassword } })