Massdriver for VS Code
cloud.massdriver/mcp-server
Manage the Massdriver infrastructure platform: projects, environments, deployments, and more.
client:VS Code
transport:stdio
runtime:oci
Install Massdriver in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "massdriver-api-key",
"description": "MASSDRIVER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "massdriver-organization-id",
"description": "MASSDRIVER_ORGANIZATION_ID",
"password": true
},
{
"type": "promptString",
"id": "massdriver-url",
"description": "MASSDRIVER_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/massdrivercloud/mcp-server:0.2.0"
],
"env": {
"MASSDRIVER_API_KEY": "${input:massdriver-api-key}",
"MASSDRIVER_ORGANIZATION_ID": "${input:massdriver-organization-id}",
"MASSDRIVER_URL": "${input:massdriver-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs