Skip to content
VS Code

Health Data (your own Supabase) for VS Code

io.github.almostjacked/health-mcp

Your health data (weight, macros, weigh-ins) as MCP tools — in your own Supabase, zero custody.

client:VS Code transport:stdio runtime:npm

Install Health Data (your own Supabase) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "supabase-url",
      "description": "SUPABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "supabase-secret-key",
      "description": "SUPABASE_SECRET_KEY",
      "password": true
    }
  ],
  "servers": {
    "health-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@almostjacked/health-mcp"
      ],
      "env": {
        "SUPABASE_URL": "${input:supabase-url}",
        "SUPABASE_SECRET_KEY": "${input:supabase-secret-key}"
      }
    }
  }
}

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

Health Data (your own Supabase) in other clients