Oura MCP runs on your own machine — the client starts it, so there is no endpoint to ping. 204 installs a week from pypi. Last commit 12 Sep 2026.
The Oura v2 API as an MCP server. Paginates, fixes the date range, warns when data is missing.
We read the source, 19 h ago · rules 3dff92dd89df
What this server is able to do. For an MCP server this is often the job itself — a terminal server runs commands because that is what it is for. Listed so you know what you are plugging in, not as an accusation.
const child = spawn(cmd, [url], { detached: true, stdio: "ignore" });
r = subprocess.run(cmd, cwd=cwd, capture_output=True, text=True, timeout=300)
entorno = dict(os.environ, OURA_SANDBOX="1")
Is this your server and something here is wrong? Tell us — corrections are free and do not require a plan.
We found places where it runs commands, builds paths or queries from values it is given. None of that is a flaw by itself — it becomes one when the code changes, and code changes quietly between releases. We re-read it on every one.
This server runs on your own machine — install it with the package manager and the client starts it for you. Package name taken from the official registry entry.
claude mcp add oura-mcp -- uvx mcp-oura
{
"mcpServers": {
"oura-mcp": {
"args": [
"mcp-oura"
],
"command": "uvx"
}
}
}
[mcp_servers.oura-mcp]
command = "uvx"
args = ["mcp-oura"]
{
"mcpServers": {
"oura-mcp": {
"args": [
"mcp-oura"
],
"command": "uvx"
}
}
}
{
"mcpServers": {
"oura-mcp": {
"args": [
"mcp-oura"
],
"command": "uvx"
}
}
}
This one needs environment variables set before it will start:
OURA_SANDBOX (Set to 1 to use Oura's official synthetic data with no credentials. The recommended way to try the server before authenticating.), OURA_CLIENT_ID (client_id of your Oura application, for OAuth2. Register one at https://cloud.ouraring.com/oauth/applications with the redirect http://localhost:9876/callback/ (the trailing slash is required).), OURA_CLIENT_SECRET (client_secret of your Oura application. Only needed when running `oura-mcp --authorize` and when refreshing the token.), OURA_CREDENTIALS (Where the OAuth2 credentials file lives. Defaults to ~/.config/oura-mcp/credentials.json, mode 600.), OURA_PAT (Oura Personal Access Token. Only if you already had one: Oura stopped issuing them in December 2025.), OURA_PAT_FILE (Path to a file holding the personal token. Preferable to OURA_PAT: an MCP server is registered in a JSON that gets backed up and shared when asking for help; a separate file rotates without touching the config.).
The author declared them in the registry entry; get the values from the project itself.
MCP server for consuming and managing Groups.io data via the Groups.io REST API
Oura Ring MCP server for the Oura API v2: sleep, readiness, activity, heart rate, and more.
AniList MCP server for accessing AniList API data
MCP server wrapping the Tesla Fleet API and TeslaMate API
MCP server for managing workouts, routines, and exercise data through the Hevy API
MCP server for the official Whoop API v2: cycles, recovery, sleep, workouts, and profile data
MCP server for the Sorsa.io X/Twitter data API
An MCP server that provides weather data
Answers built from our own checks of this server.