|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.elastic-mcp", |
| 4 | + "name": "Elasticsearch", |
| 5 | + "alias": "elasticsearch", |
| 6 | + "description": "Query Elasticsearch clusters through the official Elastic MCP server. List indices, get mappings, execute search queries with DSL, and run ES|QL queries.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/6764390?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["database", "search"], |
| 10 | + "tags": ["elasticsearch", "elastic", "search", "indexing", "esql", "analytics"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "docker", |
| 15 | + "args": [ |
| 16 | + "run", "-i", "--rm", |
| 17 | + "-e", "ES_URL", |
| 18 | + "-e", "ES_API_KEY", |
| 19 | + "docker.elastic.co/mcp/elasticsearch", |
| 20 | + "stdio" |
| 21 | + ], |
| 22 | + "env": { |
| 23 | + "ES_URL": "${input:ES_URL}", |
| 24 | + "ES_API_KEY": "${input:ES_API_KEY}" |
| 25 | + }, |
| 26 | + "metadata": { |
| 27 | + "inputs": [ |
| 28 | + { |
| 29 | + "id": "ES_URL", |
| 30 | + "label": "Elasticsearch URL", |
| 31 | + "description": "Elasticsearch cluster URL.", |
| 32 | + "type": "url", |
| 33 | + "required": true, |
| 34 | + "secret": false, |
| 35 | + "placeholder": "https://my-cluster.es.us-central1.gcp.cloud.es.io:443" |
| 36 | + }, |
| 37 | + { |
| 38 | + "id": "ES_API_KEY", |
| 39 | + "label": "Elasticsearch API Key", |
| 40 | + "description": "API key for Elasticsearch authentication.", |
| 41 | + "type": "password", |
| 42 | + "required": true, |
| 43 | + "secret": true, |
| 44 | + "placeholder": "your-elasticsearch-api-key", |
| 45 | + "obtain": { |
| 46 | + "url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-api-key.html", |
| 47 | + "instructions": "1. Go to Kibana > Stack Management > API Keys\n2. Click 'Create API key'\n3. Set appropriate permissions\n4. Copy the encoded API key", |
| 48 | + "button_label": "Create API Key" |
| 49 | + } |
| 50 | + } |
| 51 | + ] |
| 52 | + } |
| 53 | + }, |
| 54 | + |
| 55 | + "auth": { |
| 56 | + "type": "api_key", |
| 57 | + "instructions": "Create an API key from Kibana > Stack Management > API Keys or via the Elasticsearch REST API." |
| 58 | + }, |
| 59 | + |
| 60 | + "contributor": { |
| 61 | + "name": "Elastic", |
| 62 | + "github": "elastic", |
| 63 | + "url": "https://www.elastic.co" |
| 64 | + }, |
| 65 | + |
| 66 | + "links": { |
| 67 | + "repository": "https://github.com/elastic/mcp-server-elasticsearch", |
| 68 | + "homepage": "https://www.elastic.co/elasticsearch", |
| 69 | + "documentation": "https://github.com/elastic/mcp-server-elasticsearch#readme" |
| 70 | + }, |
| 71 | + |
| 72 | + "platforms": ["all"], |
| 73 | + |
| 74 | + "capabilities": { |
| 75 | + "tools": true, |
| 76 | + "resources": false, |
| 77 | + "prompts": false, |
| 78 | + "read_only_mode": true |
| 79 | + } |
| 80 | +} |
0 commit comments