Connections & Capabilities
Connects To
Capabilities
Quickstart
Config
{
"mcpServers": {
"oura": {
"command": "uvx",
"args": [
"oura-mcp-server"
],
"env": {
"OURA_API_TOKEN": "YOUR_OURA_API_TOKEN"
}
}
}
}Exposed MCP Tools (6)
get_sleep_dataRetrieves sleep data for a specified date range from the Oura API.
Read-only operation; retrieves data without modifying anything.
get_readiness_dataFetches readiness data for a given date range from the Oura API.
Read-only operation; retrieves data without modifying anything.
get_resilience_dataObtains resilience data for a specified date range from the Oura API.
Read-only operation; retrieves data without modifying anything.
get_today_sleep_dataRetrieves sleep data for the current day from the Oura API.
Read-only operation; retrieves data without modifying anything.
get_today_readiness_dataFetches readiness data for the current day from the Oura API.
Read-only operation; retrieves data without modifying anything.
get_today_resilience_dataObtains resilience data for the current day from the Oura API.
Read-only operation; retrieves data without modifying anything.
Safety Assessment
This server is relatively safe due to its read-only nature and reliance on Oura's API for authentication. However, the security of the Oura API token is critical. Ensure the token is stored securely and not exposed in logs or configuration files.
- Read-only access to Oura data.
- No direct write or delete operations.
- Relies on Oura's API authentication for security.
- Limited scope of data access (sleep, readiness, resilience).
- Requires an Oura API token, which needs secure handling.
- Potential for information leakage if the API token is compromised.
- Dependence on the security of the Oura API.
- No sandboxing implemented, relies on the security of the execution environment.
