Skip to content
VS Code

Boardsesh Climbing Logbook for VS Code

io.github.wmmg101/boardsesh-mcp

Read-only access to your Boardsesh logbook across Kilter, Tension, MoonBoard and more

client:VS Code transport:stdio runtime:pypi

Install Boardsesh Climbing Logbook in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "boardsesh-user",
      "description": "BOARDSESH_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "boardsesh-email",
      "description": "BOARDSESH_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "boardsesh-password",
      "description": "BOARDSESH_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "boardsesh-timezone",
      "description": "BOARDSESH_TIMEZONE",
      "password": true
    }
  ],
  "servers": {
    "boardsesh-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "boardsesh-mcp"
      ],
      "env": {
        "BOARDSESH_USER": "${input:boardsesh-user}",
        "BOARDSESH_EMAIL": "${input:boardsesh-email}",
        "BOARDSESH_PASSWORD": "${input:boardsesh-password}",
        "BOARDSESH_TIMEZONE": "${input:boardsesh-timezone}"
      }
    }
  }
}

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

Boardsesh Climbing Logbook in other clients