Skip to content
VS Code

Action1 for VS Code

io.github.wyre-ai/action1-mcp

Action1 MCP server — endpoint inventory, patch visibility, and policy automation via REST API.

client:VS Code transport:stdio runtime:oci

Install Action1 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "action1-client-id",
      "description": "ACTION1_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "action1-client-secret",
      "description": "ACTION1_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "action1-tenant",
      "description": "ACTION1_TENANT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "action1-base-url",
      "description": "ACTION1_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "action1-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/action1-mcp:v1.1.7"
      ],
      "env": {
        "ACTION1_CLIENT_ID": "${input:action1-client-id}",
        "ACTION1_CLIENT_SECRET": "${input:action1-client-secret}",
        "ACTION1_TENANT": "${input:action1-tenant}",
        "ACTION1_BASE_URL": "${input:action1-base-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

Action1 in other clients