We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2a0fc commit ab476dfCopy full SHA for ab476df
1 file changed
smithery.yaml
@@ -0,0 +1,24 @@
1
+# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
2
+
3
+startCommand:
4
+ type: stdio
5
+ configSchema:
6
+ # JSON Schema defining the configuration options for the MCP.
7
+ type: object
8
+ required:
9
+ - VAPI_TOKEN
10
+ properties:
11
+ VAPI_TOKEN:
12
+ type: string
13
+ default: ""
14
+ description: Vapi API token used for making API calls
15
+ commandFunction:
16
+ # A JS function that produces the CLI command based on the given config to start the MCP on stdio.
17
+ |-
18
+ (config) => ({
19
+ command: 'node',
20
+ args: ['dist/index.js'],
21
+ env: { VAPI_TOKEN: config.VAPI_TOKEN }
22
+ })
23
+ exampleConfig:
24
+ VAPI_TOKEN: dummy_vapi_token_123
0 commit comments