Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
Latest commit
40 lines (40 loc) · 1.33 KB
/
Copy pathserver.json
File metadata and controls
40 lines (40 loc) · 1.33 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.json",
"name": "dev.devicecloud/dcd",
"description": "Run Maestro mobile app tests on devicecloud.dev — submit flows, check status, and download artifacts.",
"version": "5.0.0-beta.0",
"repository": {
"url": "https://github.com/devicecloud-dev/dcd-cli",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@devicecloud.dev/dcd",
"version": "5.0.0-beta.0",
"runtimeHint": "npx",
"transport": { "type": "stdio" },
"packageArguments": [
{ "type": "positional", "value": "dcd-mcp", "valueHint": "dcd-mcp" }
],
"environmentVariables": [
{
"name": "DEVICE_CLOUD_API_KEY",
"description": "Your devicecloud.dev API key. Alternatively run `dcd login` once to use a stored session.",
"isRequired": true,
"isSecret": true
},
{
"name": "DCD_MCP_READONLY",
"description": "Set to 1 to hide the billable dcd_run_cloud_test tool (recommended for autonomous agents).",
"isRequired": false
},
{
"name": "DCD_API_URL",
"description": "Override the API base URL (e.g. for a non-production environment).",
"isRequired": false
}
]
}
]
}