Skip to content
VS Code

On Board for VS Code

io.github.swisspra/on_board

Cross-platform shared memory and ticket coordination for AI agents across MCP clients.

client:VS Code transport:stdio runtime:pypi

Install On Board in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agent-project-dir",
      "description": "AGENT_PROJECT_DIR",
      "password": true
    }
  ],
  "servers": {
    "on_board": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "onboard-memory-mcp"
      ],
      "env": {
        "AGENT_PROJECT_DIR": "${input:agent-project-dir}"
      }
    }
  }
}

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

On Board in other clients