-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
25 lines (24 loc) · 801 Bytes
/
smithery.yaml
File metadata and controls
25 lines (24 loc) · 801 Bytes
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
# Smithery configuration for WaveGuard MCP Server
# https://smithery.ai/docs/config
startCommand:
type: stdio
configSchema:
type: object
properties:
waveguardApiKey:
type: string
description: "WaveGuard API key for authentication"
waveguardApiUrl:
type: string
description: "WaveGuard API URL (default: https://gpartin--waveguard-api-fastapi-app.modal.run)"
default: "https://gpartin--waveguard-api-fastapi-app.modal.run"
required: []
commandFunction: |-
(config) => ({
command: "python",
args: ["mcp_server/server.py"],
env: {
WAVEGUARD_API_KEY: config.waveguardApiKey ?? "",
WAVEGUARD_API_URL: config.waveguardApiUrl ?? "https://gpartin--waveguard-api-fastapi-app.modal.run"
}
})