We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d1fa6 commit 5e80cb7Copy full SHA for 5e80cb7
smithery.yaml
@@ -0,0 +1,17 @@
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
+ - apifyToken
10
+ properties:
11
+ apifyToken:
12
+ type: string
13
+ description: The API token for accessing Apify's services.
14
+ commandFunction:
15
+ # A function that produces the CLI command to start the MCP on stdio.
16
+ |-
17
+ (config) => ({ command: 'node', args: ['dist/main.js'], env: { APIFY_TOKEN: config.apifyToken } })
0 commit comments