Skip to content
VS Code

Aha.io for VS Code

io.github.cedricziel/aha-mcp

Search, read and update Aha.io ideas, features, epics, releases, goals and comments

client:VS Code transport:stdio runtime:npm

Install Aha.io in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aha-company",
      "description": "AHA_COMPANY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aha-token",
      "description": "AHA_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "aha-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cedricziel/aha-mcp"
      ],
      "env": {
        "AHA_COMPANY": "${input:aha-company}",
        "AHA_TOKEN": "${input:aha-token}"
      }
    }
  }
}

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

Aha.io in other clients