Skip to content
VS Code

awx mcp server for VS Code

io.github.surgex-labs/awx-mcp-server

Control AWX/Ansible Tower through natural language - 49 tools for automation

client:VS Code transport:stdio runtime:pypi

Install awx mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "awx-base-url",
      "description": "AWX_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "awx-token",
      "description": "AWX_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "awx-username",
      "description": "AWX_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "awx-password",
      "description": "AWX_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "awx-verify-ssl",
      "description": "AWX_VERIFY_SSL",
      "password": true
    }
  ],
  "servers": {
    "awx-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "awx-mcp-server"
      ],
      "env": {
        "AWX_BASE_URL": "${input:awx-base-url}",
        "AWX_TOKEN": "${input:awx-token}",
        "AWX_USERNAME": "${input:awx-username}",
        "AWX_PASSWORD": "${input:awx-password}",
        "AWX_VERIFY_SSL": "${input:awx-verify-ssl}"
      }
    }
  }
}

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

awx mcp server in other clients