oura-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@oura-mcp-serverWhat was my Oura readiness this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Oura MCP Server
A small remote MCP server that lets Claude and ChatGPT pull your Oura Ring data (sleep, readiness, activity, heart rate, SpO2, stress) live, on demand. Your ring already syncs to Oura's cloud through the phone app — this reads from that cloud API, so there's nothing to install on your phone.
Tools exposed
Tool | What it returns |
| Sleep + readiness + activity + SpO2 + stress for a date range, in one call |
| Nightly sleep score + contributors |
| Readiness score + recovery contributors (best recovery signal) |
| Activity score, steps, calories, MET minutes |
| Detailed sessions: stages, HR, HRV, breathing |
| Time-series heart-rate samples |
| Blood oxygen % during sleep |
| Daytime stress + recovery time |
| Profile (age, sex, height, weight) |
All accept start_date / end_date as today, yesterday, or YYYY-MM-DD.
Related MCP server: Oura MCP Server
Setup (about 15 minutes, once)
1. Get Oura OAuth credentials
Oura phased out Personal Access Tokens (Dec 2025), so use OAuth2 — it also lets the server refresh itself so daily pulls keep working unattended.
Go to https://cloud.ouraring.com/oauth/applications and create an application.
Set the Redirect URI to exactly
http://localhost:8080/callback.Copy the Client ID and Client Secret.
2. Get your refresh token (one time)
On your computer (Node 20+):
npm install
OURA_CLIENT_ID=xxx OURA_CLIENT_SECRET=yyy node get-token.mjsApprove in the browser window that opens. The terminal prints OURA_REFRESH_TOKEN=.... Save it.
Just testing? Skip steps 1–2 and set
OURA_USE_SANDBOX=trueto use Oura's sample data.
3. Pick an MCP secret
Generate a long random string (e.g. openssl rand -hex 24). This protects your endpoint and becomes part of the URL.
4. Deploy (always-on cloud)
Push this folder to a GitHub repo, then use any host. Set these environment variables on the host: MCP_SECRET, OURA_CLIENT_ID, OURA_CLIENT_SECRET, OURA_REFRESH_TOKEN.
Railway (no cold starts): New Project → Deploy from repo → add the env vars. Done.
Render: New → Web Service → connect repo (a
render.yamlis included) → add env vars.Docker (any host / Fly.io): a
Dockerfileis included.
Your connector URL is:
https://<your-deployed-host>/mcp/<MCP_SECRET>Confirm it's live: visiting https://<your-deployed-host>/health should return {"status":"healthy"}.
Connect the AI apps
Claude (Pro, Max, Team, or Enterprise)
Settings → Connectors → Add custom connector → paste the URL above → save. Start a chat and ask: "What was my Oura readiness this week?"
ChatGPT (Plus, Pro, Business, Enterprise, or Edu)
Settings → Connectors / Apps → enable Developer mode → Add custom connector → paste the URL → save. (ChatGPT only supports remote HTTPS MCP servers, which this is.)
Both clients connect from the cloud, so the server must be publicly reachable over HTTPS (any of the hosts above provide that automatically).
Daily use — example prompts
"Give me my Oura daily summary for today."
"How has my sleep score trended over the last 14 days?"
"Compare my readiness on days I hit my activity target vs days I didn't."
"What was my average resting heart rate and HRV this week?"
Local run (for testing)
npm install && npm run build
MCP_SECRET=test OURA_USE_SANDBOX=true OURA_CLIENT_ID=x OURA_CLIENT_SECRET=x OURA_REFRESH_TOKEN=x npm start
# POST http://localhost:3000/mcp/testNotes
Read-only: the server never writes to your Oura account.
If pulls start failing with a 401, your refresh token was likely revoked — re-run
get-token.mjsand updateOURA_REFRESH_TOKEN.Keep
MCP_SECRETprivate; anyone with the full URL can read your data.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/srwoodsaz/oura-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server