Skip to content
VS Code

aiko for VS Code

io.github.masa-san-jp/aiko

A portable persona for MCP clients — the same agent in Claude Code, Codex, Cursor and VS Code

client:VS Code transport:stdio runtime:npm

Install aiko in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aiko-home",
      "description": "AIKO_HOME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aiko-persona-id",
      "description": "AIKO_PERSONA_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aiko-user-profile",
      "description": "AIKO_USER_PROFILE",
      "password": true
    }
  ],
  "servers": {
    "aiko": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "aiko-mcp"
      ],
      "env": {
        "AIKO_HOME": "${input:aiko-home}",
        "AIKO_PERSONA_ID": "${input:aiko-persona-id}",
        "AIKO_USER_PROFILE": "${input:aiko-user-profile}"
      }
    }
  }
}

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

aiko in other clients