-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsmithery.yaml
More file actions
29 lines (28 loc) · 1.19 KB
/
Copy pathsmithery.yaml
File metadata and controls
29 lines (28 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- azureOpenAiEndpoint
- azureOpenAiApiKey
- azureOpenAiDeploymentModel
- azureOpenAiApiVersion
properties:
azureOpenAiEndpoint:
type: string
description: The endpoint for Azure OpenAI.
azureOpenAiApiKey:
type: string
description: The API key for Azure OpenAI.
azureOpenAiDeploymentModel:
type: string
description: The deployment model for Azure OpenAI.
azureOpenAiApiVersion:
type: string
description: The API version for Azure OpenAI.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({ command: 'uv', args: ['run', 'fastmcp', 'run', './server/browser_navigator_server.py:app'], env: { AZURE_OPEN_AI_ENDPOINT: config.azureOpenAiEndpoint, AZURE_OPEN_AI_API_KEY: config.azureOpenAiApiKey, AZURE_OPEN_AI_DEPLOYMENT_MODEL: config.azureOpenAiDeploymentModel, AZURE_OPEN_AI_API_VERSION: config.azureOpenAiApiVersion } })