Skip to content
VS Code

mcp freestyle for VS Code

io.github.lozit/mcp-freestyle

Read-only FreeStyle glucose sensor access via LibreLinkUp. Not a medical device.

client:VS Code transport:stdio runtime:npm

Install mcp freestyle in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "librelinkup-email",
      "description": "LIBRELINKUP_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "librelinkup-password",
      "description": "LIBRELINKUP_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "librelinkup-version",
      "description": "LIBRELINKUP_VERSION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "librelinkup-product",
      "description": "LIBRELINKUP_PRODUCT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "librelinkup-base-url",
      "description": "LIBRELINKUP_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-freestyle": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-freestyle"
      ],
      "env": {
        "LIBRELINKUP_EMAIL": "${input:librelinkup-email}",
        "LIBRELINKUP_PASSWORD": "${input:librelinkup-password}",
        "LIBRELINKUP_VERSION": "${input:librelinkup-version}",
        "LIBRELINKUP_PRODUCT": "${input:librelinkup-product}",
        "LIBRELINKUP_BASE_URL": "${input:librelinkup-base-url}"
      }
    }
  }
}

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

mcp freestyle in other clients