Skip to content

Commit ab476df

Browse files
Add Smithery configuration
1 parent 2d2a0fc commit ab476df

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

smithery.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)