MCP Server
Last updated
The @devicecloud.dev/dcd package ships a second binary, dcd-mcp — a Model Context Protocol server that lets AI agents (Claude, Cursor, VS Code, and other MCP clients) drive DeviceCloud directly: list devices, submit cloud test runs, check status, and download artifacts.
The MCP server is a new, beta capability. The tool surface may change.
Please note that we accept no liability for anything your agent(s) may read or execute when using our MCP server. LLMs are a new technology and should be used with caution at your own risk.
Add the server to your MCP client's configuration. It runs over stdio via npx, so there's nothing to install separately:
{
"mcpServers": {
"devicecloud": {
"command": "npx",
"args": ["-y", "@devicecloud.dev/dcd", "dcd-mcp"],
"env": { "DEVICE_CLOUD_API_KEY": "<your-api-key>" }
}
}
}Auth is inherited from the CLI:
Set DEVICE_CLOUD_API_KEY in the server's env (as above), or
Run dcd login once and the server will pick up the stored session.
dcd_list_devices
Discover available devices, OS versions, and Maestro versions
dcd_list_runs
List recent test runs (filter by name/date, paginated)
dcd_get_status
Get the status and per-test results of a run
dcd_download_artifacts
Download a run's artifacts or report to disk
dcd_run_cloud_test
Submit a flow to run on the cloud (billable)
By default dcd_run_cloud_test is asynchronous: it returns an uploadId immediately, which you poll with dcd_get_status. Pass wait: true (bounded by waitTimeoutSeconds) to block until the run completes, or dryRun: true to preview the flows without submitting.
dcd_run_cloud_test consumes test credits, so it's annotated as a destructive/non-read-only tool so well-behaved clients can (and should) prompt before calling it. To hide it entirely (recommended for autonomous or untrusted agents), either:
pass --read-only in args, or
set DCD_MCP_READONLY=1 in env.
The remaining tools are all read-only.
Last updated