Skip to content
VS Code

basicdeploy mcp for VS Code

io.github.akacianl/basicdeploy-mcp

The runtime your agent deploys to — DB, storage, and a public URL in one MCP call.

client:VS Code transport:stdio runtime:npm

Install basicdeploy mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "basicdeploy-api-key",
      "description": "BASICDEPLOY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "basicdeploy-url",
      "description": "BASICDEPLOY_URL",
      "password": true
    }
  ],
  "servers": {
    "basicdeploy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "basicdeploy-mcp"
      ],
      "env": {
        "BASICDEPLOY_API_KEY": "${input:basicdeploy-api-key}",
        "BASICDEPLOY_URL": "${input:basicdeploy-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

basicdeploy mcp in other clients