oura ring mcp server for VS Code
io.github.jordanburke/oura-ring-mcp-server
Oura Ring MCP server for the Oura API v2: sleep, readiness, activity, heart rate, and more.
client:VS Code
transport:stdio
runtime:npm
Install oura ring mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "oura-client-id",
"description": "OURA_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "oura-client-secret",
"description": "OURA_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "oura-sandbox",
"description": "OURA_SANDBOX",
"password": true
},
{
"type": "promptString",
"id": "transport-type",
"description": "TRANSPORT_TYPE",
"password": true
},
{
"type": "promptString",
"id": "port",
"description": "PORT",
"password": true
},
{
"type": "promptString",
"id": "host",
"description": "HOST",
"password": true
},
{
"type": "promptString",
"id": "oura-telemetry-file",
"description": "OURA_TELEMETRY_FILE",
"password": true
},
{
"type": "promptString",
"id": "oura-telemetry-console",
"description": "OURA_TELEMETRY_CONSOLE",
"password": true
}
],
"servers": {
"oura-ring-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"oura-ring-mcp-server"
],
"env": {
"OURA_CLIENT_ID": "${input:oura-client-id}",
"OURA_CLIENT_SECRET": "${input:oura-client-secret}",
"OURA_SANDBOX": "${input:oura-sandbox}",
"TRANSPORT_TYPE": "${input:transport-type}",
"PORT": "${input:port}",
"HOST": "${input:host}",
"OURA_TELEMETRY_FILE": "${input:oura-telemetry-file}",
"OURA_TELEMETRY_CONSOLE": "${input:oura-telemetry-console}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs