Files
openfang/crates/openfang-extensions/integrations/elasticsearch.toml
iven 92e5def702
Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
初始化提交
2026-03-01 16:24:24 +08:00

36 lines
1.1 KiB
TOML

id = "elasticsearch"
name = "Elasticsearch"
description = "Search and manage Elasticsearch indices and documents through the MCP server"
category = "data"
icon = "🔍"
tags = ["search", "database", "indexing", "analytics", "full-text"]
[transport]
type = "stdio"
command = "npx"
args = ["@modelcontextprotocol/server-elasticsearch"]
[[required_env]]
name = "ELASTICSEARCH_URL"
label = "Elasticsearch URL"
help = "The base URL of your Elasticsearch cluster (e.g., https://my-cluster.es.us-east-1.aws.found.io:9243)"
is_secret = false
get_url = ""
[[required_env]]
name = "ELASTICSEARCH_API_KEY"
label = "Elasticsearch API Key"
help = "An API key with read/write permissions for the target indices"
is_secret = true
get_url = ""
[health_check]
interval_secs = 60
unhealthy_threshold = 3
setup_instructions = """
1. Obtain your Elasticsearch cluster URL from your Elastic Cloud dashboard or self-hosted instance configuration.
2. Create an API key in Kibana (Stack Management > API Keys) with appropriate index permissions.
3. Paste the cluster URL and API key into the fields above.
"""