-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsmithery.yaml
More file actions
29 lines (26 loc) · 970 Bytes
/
Copy pathsmithery.yaml
File metadata and controls
29 lines (26 loc) · 970 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
26
27
28
29
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
type: object
required: []
properties:
anthropicApiKey:
type: string
description: "Anthropic API key for Claude-powered test generation and self-healing (optional — defaults to ANTHROPIC_API_KEY env var)"
openaiApiKey:
type: string
description: "OpenAI API key for GPT-4o-powered test generation (optional — defaults to OPENAI_API_KEY env var)"
targetUrl:
type: string
description: "Default target URL to test (optional — can be passed per-run)"
commandFunction: |-
(config) => ({
command: 'python',
args: ['mcp/server.py'],
env: {
...(config.anthropicApiKey ? { ANTHROPIC_API_KEY: config.anthropicApiKey } : {}),
...(config.openaiApiKey ? { OPENAI_API_KEY: config.openaiApiKey } : {}),
...(config.targetUrl ? { AAT_URL: config.targetUrl } : {}),
}
})