We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59fa47c commit 0f94e37Copy full SHA for 0f94e37
smithery.yaml
@@ -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