Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for Withings health data integration Withings MCP Server $1 $1 $1 $1 $1 $1 $1 $1 A Model Context Protocol (MCP) server that brings your Withings health data into Claude. Access your sleep patterns, body measurements, workouts, heart data, and more through natural conversation. **๐ Privacy First**: This is my personal project, and the repository is intentionally public to demonstrate transparency. The code shows that **no personal information is logged Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
withings-mcp is best for mcp, withings, health workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for Withings health data integration Withings MCP Server $1 $1 $1 $1 $1 $1 $1 $1 A Model Context Protocol (MCP) server that brings your Withings health data into Claude. Access your sleep patterns, body measurements, workouts, heart data, and more through natural conversation. **๐ Privacy First**: This is my personal project, and the repository is intentionally public to demonstrate transparency. The code shows that **no personal information is logged
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Akutishevsky
Artifacts
0
Benchmarks
0
Last release
1.3.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/akutishevsky/withings-mcp.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Akutishevsky
Protocol compatibility
MCP
Adoption signal
9 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
5
Snippets
0
Languages
typescript
bash
# Clone the repository git clone https://github.com/your-username/withings-mcp.git cd withings-mcp # Install dependencies npm install # Generate encryption secret npm run generate-secret # Copy the output - you'll need it for environment variables
bash
# Copy environment template cp .env.example .env # Edit .env with your values # WITHINGS_CLIENT_ID=your_client_id # WITHINGS_CLIENT_SECRET=your_client_secret # WITHINGS_REDIRECT_URI=https://your-tunnel-url.com/callback # ENCRYPTION_SECRET=paste_generated_secret_here # SUPABASE_URL=https://your-project.supabase.co # SUPABASE_SECRET_KEY=your_service_role_key # PORT=3000 # Build the project npm run build # Run locally npm start
bash
# Build the project npm run build # Deploy to your hosting platform of choice # The build output is in the ./build directory
bash
npm run build # Compile TypeScript to JavaScript npm run dev # Watch mode - recompile on changes npm run generate-secret # Generate encryption secret for ENCRYPTION_SECRET env variable
text
src/ โโโ auth/ # OAuth 2.0 authentication & token storage โโโ db/ # Supabase client & cleanup scheduler โโโ server/ # Hono app, MCP endpoints, middleware โโโ tools/ # MCP tools for Withings API (sleep, measure, user, heart, stetho) โโโ withings/ # Withings API client โโโ utils/ # Logger and encryption utilities โโโ index.ts # Main entry point supabase/ โโโ migrations/ # Database schema migrations
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for Withings health data integration Withings MCP Server $1 $1 $1 $1 $1 $1 $1 $1 A Model Context Protocol (MCP) server that brings your Withings health data into Claude. Access your sleep patterns, body measurements, workouts, heart data, and more through natural conversation. **๐ Privacy First**: This is my personal project, and the repository is intentionally public to demonstrate transparency. The code shows that **no personal information is logged
A Model Context Protocol (MCP) server that brings your Withings health data into Claude. Access your sleep patterns, body measurements, workouts, heart data, and more through natural conversation.
๐ Privacy First: This is my personal project, and the repository is intentionally public to demonstrate transparency. The code shows that no personal information is logged or stored maliciously. All sensitive data (tokens, user IDs) is encrypted at rest and automatically redacted from logs. You can review the entire codebase to verify this commitment to privacy.
โ ๏ธ Disclaimer: This server is provided as-is without any guarantees or warranties. While I've made every effort to ensure security and privacy, I make no guarantees about availability, data integrity, or security. Use at your own risk. For production use cases, consider self-hosting your own instance.

This MCP server gives Claude access to your Withings health data, allowing you to:
All through natural conversation with Claude or any other MCP-compatible client.
If you just want to use this MCP server with Claude Desktop without hosting anything yourself, follow these steps:
Withings (or any name you prefer)https://withings-mcp.com/mcpNote: If your MCP client doesn't support UI-based connector configuration, you can manually edit the config file instead. See the manual configuration guide below.
After authorization, Claude will have access to your Withings data!
Once connected, Claude can use these tools to access your data:
get_sleep_summary - Sleep duration, stages (light/deep/REM), heart rate, breathing, sleep scoreget_activity - Daily steps, distance, calories, elevation, activity durationsget_intraday_activity - High-frequency activity data throughout the dayget_workouts - Detailed workout summaries with heart rate zones and metricsget_measures - Weight, body composition, blood pressure, heart rate, temperature, VO2 max, and moreget_user_devices - List of connected Withings devicesget_user_goals - Your health and fitness goals (steps, sleep, weight)list_heart_records - List of ECG recordingsget_heart_signal - Detailed ECG waveform datalist_stetho_records - List of stethoscope recordingsget_stetho_signal - Detailed audio signal dataTry asking Claude:
Want to run your own instance? Here's how to deploy this MCP server yourself.
https://your-domain.com/callback
# Clone the repository
git clone https://github.com/your-username/withings-mcp.git
cd withings-mcp
# Install dependencies
npm install
# Generate encryption secret
npm run generate-secret
# Copy the output - you'll need it for environment variables
npm install -g supabasesupabase link --project-ref <your-project-ref>supabase db pushSUPABASE_URLSUPABASE_SECRET_KEYNote: Withings requires a publicly accessible URL for OAuth callbacks. For local development, use a tunneling service to expose your local server or deploy to a staging environment for testing.
# Copy environment template
cp .env.example .env
# Edit .env with your values
# WITHINGS_CLIENT_ID=your_client_id
# WITHINGS_CLIENT_SECRET=your_client_secret
# WITHINGS_REDIRECT_URI=https://your-tunnel-url.com/callback
# ENCRYPTION_SECRET=paste_generated_secret_here
# SUPABASE_URL=https://your-project.supabase.co
# SUPABASE_SECRET_KEY=your_service_role_key
# PORT=3000
# Build the project
npm run build
# Run locally
npm start
Make sure your redirect URI in the .env file matches the publicly accessible URL pointing to your local server.
# Build the project
npm run build
# Deploy to your hosting platform of choice
# The build output is in the ./build directory
Set the following environment variables on your hosting platform:
| Variable | Required | Example |
|----------|----------|---------|
| WITHINGS_CLIENT_ID | Yes | your_client_id |
| WITHINGS_CLIENT_SECRET | Yes | your_client_secret |
| WITHINGS_REDIRECT_URI | Yes | https://your-domain.com/callback |
| ENCRYPTION_SECRET | Yes | Generated from step 2 |
| SUPABASE_URL | Yes | https://your-project.supabase.co |
| SUPABASE_SECRET_KEY | Yes | Your Supabase service role key |
| PORT | No | 3000 (or your platform's default) |
| LOG_LEVEL | No | info |
| ALLOWED_ORIGINS | No | https://example.com,https://app.example.com |
Go back to your Withings developer app and update the redirect URI to match your deployed URL:
https://your-domain.com/callback
Withings (or any name you prefer)https://your-domain.com/mcpConfigure your MCP client with the following connection details:
https://your-domain.com/mcp/.well-known/oauth-authorization-server| Variable | Required | Description |
|----------|----------|-------------|
| WITHINGS_CLIENT_ID | Yes | Your Withings app client ID |
| WITHINGS_CLIENT_SECRET | Yes | Your Withings app client secret |
| WITHINGS_REDIRECT_URI | Yes | OAuth callback URL (must match Withings app settings) |
| ENCRYPTION_SECRET | Yes | 32+ character secret for token encryption (generate with npm run generate-secret) |
| SUPABASE_URL | Yes | Your Supabase project URL (from Dashboard โ Settings โ API) |
| SUPABASE_SECRET_KEY | Yes | Your Supabase service role key (from Dashboard โ Settings โ API) |
| PORT | No | Server port (default: 3000) |
| LOG_LEVEL | No | Logging level: trace, debug, info, warn, error (default: info) |
| ALLOWED_ORIGINS | No | Comma-separated list of allowed CORS origins for browser clients |
npm run build # Compile TypeScript to JavaScript
npm run dev # Watch mode - recompile on changes
npm run generate-secret # Generate encryption secret for ENCRYPTION_SECRET env variable
src/
โโโ auth/ # OAuth 2.0 authentication & token storage
โโโ db/ # Supabase client & cleanup scheduler
โโโ server/ # Hono app, MCP endpoints, middleware
โโโ tools/ # MCP tools for Withings API (sleep, measure, user, heart, stetho)
โโโ withings/ # Withings API client
โโโ utils/ # Logger and encryption utilities
โโโ index.ts # Main entry point
supabase/
โโโ migrations/ # Database schema migrations
See CLAUDE.md for detailed architecture documentation.
All Withings access tokens, refresh tokens, and authorization codes are encrypted at rest using AES-256-GCM:
Important: Keep your ENCRYPTION_SECRET:
npm run generate-secret)/authorize endpoint validates redirect_uri against the registered client's allowed URIs, preventing open redirect attacksunsafe-inline directivesThe custom logger automatically redacts all sensitive information:
You can review the logging implementation in src/utils/logger.ts.
This is a personal project, but contributions are welcome! Please:
MIT License - see LICENSE file for details.
Built with:
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T02:44:31.311Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "withings",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "health",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "fitness",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:withings|supported|profile capability:health|supported|profile capability:fitness|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Akutishevsky",
"href": "https://github.com/akutishevsky/withings-mcp#readme",
"sourceUrl": "https://github.com/akutishevsky/withings-mcp#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:23:13.918Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:23:13.918Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "9 GitHub stars",
"href": "https://github.com/akutishevsky/withings-mcp",
"sourceUrl": "https://github.com/akutishevsky/withings-mcp",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:23:13.918Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-akutishevsky-withings-mcp/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to withings-mcp and adjacent AI workflows.