coros-mcp CLAUDE.md

coros-mcp CLAUDE.md is an instructions file for Claude Code from cygnusb/coros-mcp. It costs 1,408 tokens per session, scanned A, original, MIT.

Repository guidance for developing coros-mcp, a server that lets AI assistants access Coros fitness data such as sleep, heart-rate variability, training metrics, and activities. It covers setup, authentication, commands, and development checks.

In plain words
What is it for?
Use it when setting up coros-mcp, connecting it to Claude Code, authenticating Coros accounts, syncing data, checking cache coverage, or running pytest, ruff, and mypy.
Why use it?
It explains how to install, run, authenticate, cache, and test the server without having to discover those details from the code.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/cygnusb/coros-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/cygnusb/coros-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for coros-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cygnusb/coros-mcp/claude-md.svg)](https://agentmods.dev/instructions/cygnusb/coros-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/cygnusb/coros-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/cygnusb/coros-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,408 This file is loaded in full into every session.
When invoked 1,408 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01408 $0.01408
Opus 5 $0.00704 $0.00704
Sonnet 5 $0.00282 $0.00282
Haiku 4.5 $0.00141 $0.00141

Measured 6d ago against content hash 97507b3f9ea2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

coros-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

coros-mcp is a Model Context Protocol (MCP) server that exposes Coros fitness data (sleep, HRV, training metrics, activities, workouts) to AI assistants. It uses the unofficial Coros API — no official API key required.

Setup & Installation

python3 -m venv .venv
source .venv/bin/activate
pip install -e .
# For development (pytest, ruff, mypy):
pip install -e ".[dev]"

Running the Server

# Run via CLI entry point (recommended):
coros-mcp serve

# Or register with Claude Code:
claude mcp add coros -- /path/to/coros-mcp/.venv/bin/coros-mcp serve

CLI Commands

coros-mcp auth           # Authenticate (web + mobile tokens)
coros-mcp auth-web       # Web API only (no sleep data)
coros-mcp auth-mobile    # Mobile API only (sleep data)
coros-mcp auth-status    # Check token status
coros-mcp auth-clear     # Remove stored tokens
coros-mcp sync [--from YYYYMMDD] [--to YYYYMMDD]  # Backfill data to local cache
coros-mcp cache-status   # Show local cache coverage

Architecture

The project wraps two separate Coros APIs behind a unified MCP interface:

Dual API Design

  • Training Hub web API (teameuapi.coros.com / teamapi.coros.com): HRV, daily metrics, activities, workouts. Auth via MD5-hashed password → accessToken header. Token TTL: 24 hours.
  • Mobile API (apieu.coros.com / apius.coros.com): Sleep stage data (deep/light/REM/awake). Auth via AES-128-CBC encrypted credentials (key reverse-engineered from Coros APK). Token TTL: ~1 hour, auto-refreshes by replaying the stored encrypted login payload.

Token Storage (coros_mcp/auth/)

Priority chain for retrieval: COROS_ACCESS_TOKEN env var → system keyring → encrypted local file. The env var replaces only the web access token — stored user_id, region, and mobile token/payload are merged in so sleep data keeps working. On write, both keyring and encrypted file are updated (belt-and-suspenders). The entire StoredAuth object (web token + mobile token + mobile login payload for replay) is serialized as JSON and stored as a single credential.

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 73 lines · 1,408 tokens per session scan A 97507b3f9ea2

Subscribe to this mod's changes

coros-mcp CLAUDE.md is an instructions file published in the GitHub repository cygnusb/coros-mcp (117 stars, last pushed 8d ago), licensed MIT. It adds 1,408 tokens to every session, about $0.0070 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.