Skip to content
VS Code

sauce api mcp for VS Code

io.github.saucelabs/sauce-api-mcp

An open-source MCP server that provides LLM access to the Sauce Labs API

client:VS Code transport:stdio runtime:pypi

Install sauce api mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sauce-username",
      "description": "SAUCE_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sauce-access-key",
      "description": "SAUCE_ACCESS_KEY",
      "password": true
    }
  ],
  "servers": {
    "sauce-api-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sauce-api-mcp"
      ],
      "env": {
        "SAUCE_USERNAME": "${input:sauce-username}",
        "SAUCE_ACCESS_KEY": "${input:sauce-access-key}"
      }
    }
  }
}

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

sauce api mcp in other clients