PluginBench
MCP Server
Active
MIT

io.github.lozit/mcp-freestyle MCP Server

io.github.lozit/mcp-freestyle

What is the io.github.lozit/mcp-freestyle MCP server?

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

How to install io.github.lozit/mcp-freestyle

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • LIBRELINKUP_EMAIL
    required

    LibreLinkUp *follower* account e-mail — not the primary LibreLink account. The password is stored once via `npx mcp-freestyle-login` in the OS keychain, so it never appears in this configuration.

  • LIBRELINKUP_PASSWORD
    secret

    Overrides the OS keychain. Intended for CI and one-off runs; prefer `mcp-freestyle-login` so no credential lands in a config file.

  • LIBRELINKUP_VERSION

    Pinned LibreLinkUp client version sent as the `version` header. Upstream rejects stale values — set this to the current LibreLinkUp app version if requests start failing.

  • LIBRELINKUP_PRODUCT

    Client product identifier sent as the `product` header.

  • LIBRELINKUP_BASE_URL

    Entry point for authentication. The regional host is discovered at login and is never configured here.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-freestyle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-freestyle"
      ],
      "env": {
        "LIBRELINKUP_EMAIL": "<YOUR_LIBRELINKUP_EMAIL>",
        "LIBRELINKUP_PASSWORD": "<YOUR_LIBRELINKUP_PASSWORD>",
        "LIBRELINKUP_VERSION": "<YOUR_LIBRELINKUP_VERSION>",
        "LIBRELINKUP_PRODUCT": "<YOUR_LIBRELINKUP_PRODUCT>",
        "LIBRELINKUP_BASE_URL": "<YOUR_LIBRELINKUP_BASE_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-freestyle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-freestyle"
      ],
      "env": {
        "LIBRELINKUP_EMAIL": "<YOUR_LIBRELINKUP_EMAIL>",
        "LIBRELINKUP_PASSWORD": "<YOUR_LIBRELINKUP_PASSWORD>",
        "LIBRELINKUP_VERSION": "<YOUR_LIBRELINKUP_VERSION>",
        "LIBRELINKUP_PRODUCT": "<YOUR_LIBRELINKUP_PRODUCT>",
        "LIBRELINKUP_BASE_URL": "<YOUR_LIBRELINKUP_BASE_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-freestyle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-freestyle"
      ],
      "env": {
        "LIBRELINKUP_EMAIL": "<YOUR_LIBRELINKUP_EMAIL>",
        "LIBRELINKUP_PASSWORD": "<YOUR_LIBRELINKUP_PASSWORD>",
        "LIBRELINKUP_VERSION": "<YOUR_LIBRELINKUP_VERSION>",
        "LIBRELINKUP_PRODUCT": "<YOUR_LIBRELINKUP_PRODUCT>",
        "LIBRELINKUP_BASE_URL": "<YOUR_LIBRELINKUP_BASE_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-freestyle": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-freestyle"
      ],
      "env": {
        "LIBRELINKUP_EMAIL": "<YOUR_LIBRELINKUP_EMAIL>",
        "LIBRELINKUP_PASSWORD": "<YOUR_LIBRELINKUP_PASSWORD>",
        "LIBRELINKUP_VERSION": "<YOUR_LIBRELINKUP_VERSION>",
        "LIBRELINKUP_PRODUCT": "<YOUR_LIBRELINKUP_PRODUCT>",
        "LIBRELINKUP_BASE_URL": "<YOUR_LIBRELINKUP_BASE_URL>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-freestyle --env LIBRELINKUP_EMAIL=<YOUR_LIBRELINKUP_EMAIL> --env LIBRELINKUP_PASSWORD=<YOUR_LIBRELINKUP_PASSWORD> --env LIBRELINKUP_VERSION=<YOUR_LIBRELINKUP_VERSION> --env LIBRELINKUP_PRODUCT=<YOUR_LIBRELINKUP_PRODUCT> --env LIBRELINKUP_BASE_URL=<YOUR_LIBRELINKUP_BASE_URL> -- npx -y mcp-freestyle

Related MCP servers

End-to-end encrypted access to a Standard Notes vault (protocol 004, local stdio only).

7
TypeScript
MIT
View repository →