Skip to content
VS Code

samsung health mcp for VS Code

io.github.davidmosiah/samsung-health-mcp

Unofficial local-first MCP server for Samsung Health personal-data CSV/ZIP exports.

client:VS Code transport:stdio runtime:npm

Install samsung health mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "samsung-health-export-path",
      "description": "SAMSUNG_HEALTH_EXPORT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "samsung-health-timezone",
      "description": "SAMSUNG_HEALTH_TIMEZONE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "samsung-health-privacy-mode",
      "description": "SAMSUNG_HEALTH_PRIVACY_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "samsung-health-watch-path",
      "description": "SAMSUNG_HEALTH_WATCH_PATH",
      "password": true
    }
  ],
  "servers": {
    "samsung-health-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "samsung-health-mcp-unofficial"
      ],
      "env": {
        "SAMSUNG_HEALTH_EXPORT_PATH": "${input:samsung-health-export-path}",
        "SAMSUNG_HEALTH_TIMEZONE": "${input:samsung-health-timezone}",
        "SAMSUNG_HEALTH_PRIVACY_MODE": "${input:samsung-health-privacy-mode}",
        "SAMSUNG_HEALTH_WATCH_PATH": "${input:samsung-health-watch-path}"
      }
    }
  }
}

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

samsung health mcp in other clients