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 afd5991 commit 5abd310Copy full SHA for 5abd310
smithery.yaml
@@ -0,0 +1,21 @@
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
+ - apiKey
10
+ - apiType
11
+ properties:
12
+ apiKey:
13
+ type: string
14
+ description: API key for either OpenRouter or Perplexity.
15
+ apiType:
16
17
+ description: "Specifies which API to use: openrouter or perplexity."
18
+ commandFunction:
19
+ # A function that produces the CLI command to start the MCP on stdio.
20
+ |-
21
+ (config) => ({ command: 'perplexity-advanced-mcp', args: [`-${config.apiType === 'openrouter' ? 'o' : 'p'}`, config.apiKey] })
0 commit comments