OathMCP AGENTS.md

OathMCP AGENTS.md is an instructions file for Codex, OpenCode from OATH-md/OathMCP. It costs 1,920 tokens per session, scanned A, original, Apache-2.0.

A repository guide for OathMCP, a TypeScript server that provides clinical calculators such as BMI, GFR, and MELD to AI agents.

In plain words
What is it for?
Use it when building, testing, linting, packaging, or running OathMCP, or when exercising one of its calculators through the server.
Why use it?
It gives coding agents the project context, required commands, and acceptance checks needed to change the repository safely. It also points to the project’s responsible-use guidance for clinical software.

Instructions file for CodexOpenCode

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/oath-md/oathmcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/OATH-md/OathMCP

Made for: Codex, OpenCode.

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 OathMCP AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/oath-md/oathmcp/agents-md.svg)](https://agentmods.dev/instructions/oath-md/oathmcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/oath-md/oathmcp/agents-md"><img src="https://agentmods.dev/badge/instructions/oath-md/oathmcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,920 This file is loaded in full into every session.
When invoked 1,920 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 $0.01920 $0.01920
Opus 5 $0.00960 $0.00960
Sonnet 5 $0.00384 $0.00384
Haiku 4.5 $0.00192 $0.00192

Measured 4d ago against content hash a8ea3a8d00b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

OathMCP AGENTS.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 4d 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.

AGENTS.md · 128 lines

How it starts

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

Repository Agent Guide

AGENTS.md is the canonical agent guide.

Project Overview

OathMCP is a TypeScript Model Context Protocol (MCP) server implementing 40 established clinical calculators (BMI, GFR, MELD, etc.) as agent-native tools, with per-value US/SI unit handling, plausibility guards, evidence resources, and interpreter prompts. It runs over stdio (npx -y @oath-md/[email protected]), stateless HTTP, or Cloudflare Workers. The project implements documented instruments; it is not new clinical research. Read docs/RESPONSIBLE_USE.md before changing public-facing clinical, deployment, warranty, or responsibility language.

Commands

# Full acceptance check
npm run check

# Individual checks
npm run lint:specs
npm run typecheck
npm run build
npm run test
npm run check:clinical-release
npm run check:package

# Run the MCP server
npm run start:stdio        # stdio transport (node dist/server/stdio.js)
npm run start:http         # stateless HTTP transport
npx @modelcontextprotocol/inspector node dist/server/stdio.js   # inspect tools/prompts/resources

# Exercise one calculator through the engine
npx tsx -e "import('./src/engine/run.ts').then(m=>console.log(m.run('bmi',{weight_kg:70,height_cm:170})))"

Architecture

The server is spec-driven: each live calculator has a strict YAML spec, an exactly typed pure TypeScript compute function, and an implementation-assurance dossier. There is no manual per-calculator server wiring — the MCP surface is derived from the live specs at startup.

Layers (all MCP-SDK imports are confined to src/server/** to keep the protocol boundary isolated):

  • specs/<id>.yaml — the runtime contract: metadata, evidence, inputs, outputs, bands, and warning/cap rules. Runtime specs contain no test fixtures. Validated by SpecSchema (src/engine/spec-schema.ts) at load time.
  • src/engine/ — spec loading (load-specs.ts), the unit-conversion table (units.ts, the single conversion source of truth), the band-expression evaluator (bands.ts, a closed hand-written grammar — no eval), the compute registry (registry.ts), typed errors (errors.ts), and the runner run(id, rawInputs) (run.ts) that normalizes units, enforces plausibility/hard-limit/cap rules, calls the compute fn, evaluates bands, and returns a normalized CalcResult envelope.
  • src/compute/<id>.ts — a pure function over canonical-unit inputs, registered via registerCompute('<id>', fn). Receives inputs already normalized to canonical (US) units. round.ts provides deterministic half-even decimal rounding. src/compute/index.generated.ts is generated from the spec filenames and owns side-effect registration imports.
  • src/server/build-tools.tsbuildServer() derives, per spec, a calculate_<id> tool (input/output schemas from the spec), an evidence_<id> resource, and (if the spec has a prompt block) an interpret_<id> prompt. Also registers the agent-dispatch tools find_calculator, describe_calculator, and calculate_panel. Entrypoints: stdio.ts, http.ts, worker.ts.

Read the full file on GitHub · 128 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. 4d ago First seen · 128 lines · 1,920 tokens per session scan A a8ea3a8d00b3

Subscribe to this mod's changes

OathMCP AGENTS.md is an instructions file published in the GitHub repository OATH-md/OathMCP (11 stars, last pushed 18d ago), licensed Apache-2.0. It adds 1,920 tokens to every session, about $0.0096 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.