-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsmithery.yaml
More file actions
24 lines (24 loc) · 752 Bytes
/
smithery.yaml
File metadata and controls
24 lines (24 loc) · 752 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
startCommand:
type: stdio
configSchema:
type: object
required:
- ddApiKey
- ddAppKey
properties:
ddApiKey:
type: string
description: Datadog API key
ddAppKey:
type: string
description: Datadog Application key
ddSite:
type: string
default: datadoghq.com
description: Datadog site (e.g., datadoghq.com, datadoghq.eu)
commandFunction: |-
config => ({ command: 'npx', args: ['-y', 'datadog-mcp'], env: { DD_API_KEY: config.ddApiKey, DD_APP_KEY: config.ddAppKey, DD_SITE: config.ddSite || 'datadoghq.com' } })
exampleConfig:
ddApiKey: smithery-scan-placeholder-api-key
ddAppKey: smithery-scan-placeholder-app-key
ddSite: datadoghq.com