Librelink Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Librelink Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A local Model Context Protocol (MCP) server that provides Claude Desktop with secure access to your FreeStyle LibreLink continuous glucose monitoring (CGM) data.
# Clone the repository
git clone https://github.com/yourusername/librelink-mcp-server.git
cd librelink-mcp-server
# Install dependencies
npm install
# Build the project
npm run build# Configure your LibreLink credentials
npm run configureYou'll be prompted for:
# Test your LibreLink connection
node test-real-connection.jsAdd to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"librelink": {
"command": "node",
"args": ["/path/to/librelink-mcp-server/dist/index.js"]
}
}
}Restart Claude Desktop to load the new MCP server.
Once integrated with Claude Desktop, you can ask:
When combined with other health MCP servers:
| Tool | Description | Parameters |
|---|---|---|
get_current_glucose | Real-time glucose reading with trend | None |
get_glucose_history | Historical glucose data | hours (default: 24) |
get_glucose_stats | Statistics and time-in-range | days (default: 7) |
get_glucose_trends | Pattern analysis | period (daily/weekly/monthly) |
get_sensor_info | Sensor status and info | None |
configure_credentials | Update LibreLink credentials | email, password, region |
configure_ranges | Set target glucose ranges | target_low, target_high |
validate_connection | Test LibreLink connection | None |
{
"current_glucose": 105,
"timestamp": "2025-07-14T21:19:24.000Z",
"trend": "Flat",
"status": "Normal",
"color": "green"
}{
"analysis_period_days": 7,
"average_glucose": 93.46,
"glucose_management_indicator": 5.55,
"time_in_range": {
"target_70_180": 100.0,
"below_70": 0.0,
"above_180": 0.0
},
"variability": {
"standard_deviation": 7.52,
"coefficient_of_variation": 8.04
}
}{
"period": "daily",
"patterns": [
"Good postprandial glucose control",
"Excellent overnight glucose stability"
],
"dawn_phenomenon": false,
"meal_response_average": 0,
"overnight_stability": 2.08
}# Run all tests
npm test
# Test MCP protocol
npm run test:mcp
# Test analytics with mock data
npm run test:analytics
# Test with real LibreLink data (requires configuration)
node test-real-data.js# Build TypeScript
npm run build
# Type checking
npm run typecheck
# Development mode
npm run devlibrelink-mcp-server/
├── src/
│ ├── index.ts # Main MCP server
│ ├── librelink-client.ts # LibreLink API wrapper
│ ├── glucose-analytics.ts # Analytics and statistics
│ ├── config.ts # Configuration management
│ ├── configure.ts # CLI configuration tool
│ └── types.ts # TypeScript definitions
├── config/
│ └── default.json # Default configuration
├── test-*.js # Test suites
├── package.json
└── README.md~/.librelink-mcp/config.json# Verify file permissions
ls -la ~/.librelink-mcp/config.json
# Should show: -rw------- (user read/write only)
# Optional: Encrypt config directory
# (Implementation details in documentation)"No connections found"
"Authentication failed"
"Connection timeout"
node diagnose-account.js node test-real-connection.jsWe welcome contributions! Please:
git checkout -b feature/amazing-featureThis project is licensed under the MIT License - see the LICENSE file for details.
If this project helps you manage your diabetes with AI assistance, please:
Disclaimer: This is an unofficial project not affiliated with Abbott or FreeStyle Libre. Use responsibly and in compliance with applicable terms of service. Always consult healthcare professionals for medical decisions.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.