-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmithery.yaml
25 lines (24 loc) · 914 Bytes
/
smithery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 } })