Skip to content

Commit 0f94e37

Browse files
Add Smithery configuration
1 parent 59fa47c commit 0f94e37

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

smithery.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
- webflowToken
10+
properties:
11+
webflowToken:
12+
type: string
13+
description: Token to authenticate with Webflow API
14+
commandFunction:
15+
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
16+
|-
17+
(config) => ({ command: 'node', args: ['dist/index.js'], env: { WEBFLOW_TOKEN: config.webflowToken } })
18+
exampleConfig:
19+
webflowToken: YOUR_WEBFLOW_API_TOKEN

0 commit comments

Comments
 (0)