Skip to content
VS Code

Atono for VS Code

io.atono/atono-mcp-server

Give your AI coding tools your team's product context: stories, bugs, epics, and glossary.

client:VS Code transport:stdio runtime:oci

Install Atono in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x-api-key",
      "description": "X_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "atono-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/atonoio/atono-mcp-server:1.1.1"
      ],
      "env": {
        "X_API_KEY": "${input:x-api-key}"
      }
    }
  }
}

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

Atono in other clients