Skip to content
VS Code

rosettahub mcp server for VS Code

io.github.danielcregg/rosettahub-mcp-server

Manage RosettaHUB user AWS accounts — budgets, AWS CLI, access control.

client:VS Code transport:stdio runtime:pypi

Install rosettahub mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rh-api-key",
      "description": "RH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rh-org",
      "description": "RH_ORG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rh-aws-region",
      "description": "RH_AWS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rh-wsdl-url",
      "description": "RH_WSDL_URL",
      "password": true
    }
  ],
  "servers": {
    "rosettahub-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "rosettahub-mcp-server"
      ],
      "env": {
        "RH_API_KEY": "${input:rh-api-key}",
        "RH_ORG": "${input:rh-org}",
        "RH_AWS_REGION": "${input:rh-aws-region}",
        "RH_WSDL_URL": "${input:rh-wsdl-url}"
      }
    }
  }
}

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

rosettahub mcp server in other clients