Skip to content
VS Code

oura ring mcp for VS Code

io.github.mitchhankins01/oura-ring-mcp

Connect your Oura Ring to Claude AI assistants. Health metrics with smart analysis tools.

client:VS Code transport:stdio runtime:npm

Install oura ring mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "oura-access-token",
      "description": "OURA_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oura-client-id",
      "description": "OURA_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oura-client-secret",
      "description": "OURA_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "oura-ring-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "oura-ring-mcp"
      ],
      "env": {
        "OURA_ACCESS_TOKEN": "${input:oura-access-token}",
        "OURA_CLIENT_ID": "${input:oura-client-id}",
        "OURA_CLIENT_SECRET": "${input:oura-client-secret}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

oura ring mcp in other clients