-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.12 KB
/
server.json
File metadata and controls
44 lines (44 loc) · 1.12 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "com.scoutapm/scout-mcp-local",
"description": "An MCP server for Scout Monitoring data interactions.",
"repository": {
"url": "https://github.com/scoutapp/scout-mcp-local",
"source": "github"
},
"version": "2026.3.20",
"packages": [
{
"registryType": "pypi",
"identifier": "scout-mcp-local",
"version": "2026.3.20",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Your API key for Scout Monitoring.",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "SCOUT_API_KEY"
}
]
},
{
"registryType": "oci",
"identifier": "docker.io/scoutapp/scout-mcp-local:latest",
"environmentVariables": [
{
"name": "SCOUT_API_KEY",
"description": "Your API key for Scout Monitoring.",
"isRequired": true,
"isSecret": true
}
],
"transport": {
"type": "stdio"
}
}
]
}