Eight Sleep Mcp Unofficial
БесплатноПоддерживаетсяUnofficial MCP server for connecting AI agents to the Eight Sleep mobile-app API (sleep trends, temperature, alarms, base).
Описание
Unofficial MCP server for connecting AI agents to the Eight Sleep mobile-app API (sleep trends, temperature, alarms, base).
README
Eight Sleep MCP
Give your AI agent your Eight Sleep sleep trends, temperature program and alarms — and optionally let it tune the pod overnight.
Local-first MCP server — credentials never leave your machine.
⚡ One-command install with Delx Wellness for Hermes:
npx -y delx-wellness-hermes setup— preconfigures this connector alongside the rest of the wellness catalog.Or wire it standalone into Claude Desktop / Cursor / OpenClaw / any MCP client — see the install section below.
HTTP (v2 stateless)
Default is stdio. Optional Streamable HTTP — no session id, JSON responses, loopback only:
npx -y eight-sleep-mcp-unofficial --http
# GET http://127.0.0.1:3000/health
# POST http://127.0.0.1:3000/mcp (sessionless)
Env: EIGHT_SLEEP_MCP_HOST, EIGHT_SLEEP_MCP_PORT, EIGHT_SLEEP_MCP_TRANSPORT=http.
Local-first MCP server that connects AI agents to your Eight Sleep pod — sleep sessions, temperature program, alarms, adjustable base — with an explicit mutation gate for write actions.
Unofficial project. Not affiliated with, endorsed by, or supported by Eight Sleep, Inc. Eight Sleep is a trademark of its respective owner. Use this only with your own Eight Sleep account.
Eight Sleep does not publish a stable public API. This package talks to the same private endpoints (auth-api.8slp.net, client-api.8slp.net, app-api.8slp.net) the mobile app uses, following the path well documented by upstream community projects (lukas-clarke/eight_sleep, mezz64/pyEight, steipete/eightctl).
Part of Delx Wellness — a registry of local-first wellness MCP connectors.
If this connector helps your agent workflow, please star the repo. Stars make the project easier for other AI builders to discover and help Delx keep shipping local-first wellness infrastructure.
Why this exists
Eight Sleep ships great sleep telemetry — nightly score, presence intervals, tnt, smart-temperature schedule — but it lives inside a closed iOS/Android app with no public API. Bringing it into your agent today means reverse-engineering OAuth, juggling token refresh, normalizing endpoint shapes, and handling timezone quirks.
This package does all of that locally, exposes Eight Sleep through the Model Context Protocol, and lets any MCP-compatible agent read your sleep context (and write pod commands, if you opt in) with one config snippet. Credentials and tokens stay on your machine.
Setup in 60 seconds
npx -y eight-sleep-mcp-unofficial setup # interactive: email + password
npx -y eight-sleep-mcp-unofficial login # persists the auth token
npx -y eight-sleep-mcp-unofficial doctor # verifies you're ready
Then add this to your MCP client config:
{
"mcpServers": {
"eight_sleep": {
"command": "npx",
"args": ["-y", "eight-sleep-mcp-unofficial"]
}
}
}
For Claude Desktop, run setup --client claude and the snippet is written for you.
Try it with your agent
Three things to ask first:
Use eight_sleep_connection_status to check setup, then run eight_sleep_get_me.
Tell me what device you find.
Call eight_sleep_get_trends for the last 7 days, response_format=json.
What's my best night and worst night, and why?
Call eight_sleep_get_temperature. Summarize the current smart schedule
(bedtime, initial sleep, final sleep) and tell me if I should tune it.
Data availability
This package talks to the Eight Sleep mobile-app API. It does not access continuous biometric sensor streams or BLE.
| Data | Tool | Source |
|---|---|---|
| User & device | eight_sleep_get_me, eight_sleep_get_user, eight_sleep_get_current_device |
client-api.8slp.net /users/... |
| Temperature program | eight_sleep_get_temperature |
app-api.8slp.net /v1/users/{id}/temperature |
| Sleep trends | eight_sleep_get_trends |
client-api.8slp.net /users/{id}/trends |
| Alarms | eight_sleep_get_alarms |
app-api.8slp.net /v2/users/{id}/alarms |
| Adjustable base | eight_sleep_get_base |
app-api.8slp.net /v1/users/{id}/base |
Workflow tools
| Tool | What it does |
|---|---|
eight_sleep_nightly_summary |
Multi-night summary: best night, worst night, mean score, nights under 70 / over 85 — one call instead of post-processing raw get_trends. |
eight_sleep_wellness_context |
Returns a normalized delx-wellness-context/v1 payload so other Delx Wellness tools (Nourish, Exercise Catalog, Telegram coaches) can read sleep context without knowing the Eight Sleep API. |
Mutation tools (write gate)
Off by default. To enable, re-run setup with --allow-mutations or enable EIGHT_SLEEP_ALLOW_MUTATIONS. Do not put the assignment in default MCP snippets.
| Action | Tool |
|---|---|
| Set heating level | eight_sleep_set_temperature |
| Turn side on/off | eight_sleep_set_side |
| Toggle away mode | eight_sleep_set_away_mode |
| Snooze alarm | eight_sleep_snooze_alarm |
| Dismiss alarm | eight_sleep_dismiss_alarm |
When the gate is off, mutation tools return an explicit mutations disabled error so agents can detect it and ask the user to opt in.
Privacy
- Credentials stored in
~/.eight-sleep-mcp/config.jsonwithchmod 600. - Auth tokens stored in
~/.eight-sleep-mcp/tokens.jsonwithchmod 600. - Sensitive fields (email, device serial, shipping address, payment last-four) are redacted from tool responses by default.
EIGHT_SLEEP_PRIVACY_MODE:summary— minimal fields only.structured(default) — preserves complete nested sleep fields and future upstream additions while redacting identifiers.raw— full upstream payload (debugging only).
Trend requests validate real YYYY-MM-DD dates, range order and IANA timezone names before any network call.
Call eight_sleep_privacy_audit at any time to inspect the current posture without exposing secrets.
Environment variables
| Var | Purpose |
|---|---|
EIGHT_SLEEP_EMAIL |
Account email. |
EIGHT_SLEEP_PASSWORD |
Account password. |
EIGHT_SLEEP_ALLOW_MUTATIONS |
Enable write tools (keep unset in default snippets). |
EIGHT_SLEEP_PRIVACY_MODE |
summary / structured / raw. |
EIGHT_SLEEP_CACHE |
sqlite to enable on-disk response cache. |
EIGHT_SLEEP_TOKEN_PATH |
Override token storage path. |
EIGHT_SLEEP_CLIENT_ID / EIGHT_SLEEP_CLIENT_SECRET |
Override Android-app credential defaults (advanced). |
Stability
Eight Sleep changes mobile-app endpoints without notice. This connector tracks upstream community projects (lukas-clarke/eight_sleep, steipete/eightctl, mezz64/pyEight) for breakage signals. If a tool starts returning 4xx unexpectedly, check those repos and the project issues for the latest known-good shape.
Credits
- lukas-clarke/eight_sleep — Home Assistant integration, most current reference for V2 endpoints.
- mezz64/pyEight — original Python library; auth + endpoint discovery.
- steipete/eightctl — CLI variant with extracted client credentials.
- LiamSnow/opensleep — full open-source firmware (deeper than this MCP goes).
📧 Contact & Support
- 📨 [email protected] — general questions, integration help, partnerships
- 🐛 Bug reports / feature requests — GitHub Issues
- 🐦 Updates — @delx369 on X
- 🌐 Site — wellness.delx.ai
License
MIT — see LICENSE.
Skill or MCP
Same package, two doors. MCP registers tools on stdio/HTTP. The skill can drive the same tools through the CLI when the client has no MCP:
npx -y eight-sleep-mcp-unofficial call eight_sleep_connection_status --json '{}'
Copy skill/SKILL.md into your agent skills dir.
Установить Eight Sleep Mcp Unofficial в Claude Desktop, Claude Code, Cursor
unyly install eight-sleep-mcp-unofficialСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add eight-sleep-mcp-unofficial -- npx -y eight-sleep-mcp-unofficialПошаговые гайды: как установить Eight Sleep Mcp Unofficial
FAQ
Eight Sleep Mcp Unofficial MCP бесплатный?
Да, Eight Sleep Mcp Unofficial MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Eight Sleep Mcp Unofficial?
Нет, Eight Sleep Mcp Unofficial работает без API-ключей и переменных окружения.
Eight Sleep Mcp Unofficial — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Eight Sleep Mcp Unofficial в Claude Desktop, Claude Code или Cursor?
Открой Eight Sleep Mcp Unofficial на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Изменения
Версии и запрашиваемые доступы со временем.
- Новая версия опубликована
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
Roblox Studio
Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce
автор: paralovAWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
автор: lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
Compare Eight Sleep Mcp Unofficial with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
