Signed drift reports for the ai-agents-for-beginners course. Free summary; $0.25 full report.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A signed drift report for Microsoft's ai-agents-for-beginners course. It scans the course for two things that go wrong quietly:
>= requirement now resolves to a
newer major version than the course was written againstBoth are invisible in a diff. Nothing in a course repo tells you a pinned
model is about to stop serving, or that pip install today pulls a package
two majors ahead of what the lessons assume. Answering that question takes
someone actually checking each pin against the platform's own retirement
calendar and the package's real release history. This repository does that
checking, continuously, and sells the result as a signed report.
Every report is signed, not just asserted:
oracle/receipt.py (signs) and
worker/src/logic.ts (verifies).oracle/chain.jsonl, each entry pointing at the hash of the one before
it. Drop an entry, edit one, or reorder two and every later link stops
matching. oracle/verify_chain.py checks this independently of the code
that writes it.verify_report is free. Call it before paying to confirm the free
summary's claims are backed by a real signature, and after paying to
confirm the paid report matches the hash the free summary already
committed to. A seller who serves fewer findings than promised gets
caught by arithmetic, not by trust.The service is an MCP server over streamable HTTP:
Copy-paste quickstart, plain curl, no client library (every command here was run against production before being written down):
The same pattern calls every tool in the table above; only the name
and arguments change.
Ten tools:
| Tool | Price | Returns |
|---|---|---|
drift_summary | free | finding counts by severity and lesson, plus a signed receipt |
verify_report | free | checks a receipt's signature and, optionally, that a findings array matches it |
drift_report | $0.25 | every finding: file, line, diagnosis, fix. Paid via MPP (Tempo testnet) |
drift_report_x402 | $0.25 | the same report, paid via x402/USDC (Base Sepolia testnet) |
model_status | free | one model id in, its signed catalog entry out: current, deprecated, retired, or an honest "unknown: not in catalog" |
model_status_batch | $0.10 | a list of model ids in, one entry per id plus an any_action_needed gate boolean, paid via MPP (Tempo testnet) |
model_status_batch_x402 | $0.10 | the same batch lookup, paid via x402/USDC (Base Sepolia testnet) |
site_audit_summary | free | agent-readiness score for a public site (12 checks): counts, target and date only; the per-check detail and signed receipt are the paid tier |
site_audit | $0.25 | all 12 checks with per-check status, detail and fix list as a signed dated receipt. Paid via MPP (Tempo testnet) |
site_audit_x402 | $0.25 | the same full audit, paid via x402/USDC (Base Sepolia testnet) |
The twelve audit checks, so you know what a score means before paying:
robots-exists, robots-ai-directives, robots-not-blanket,
llmstxt-exists, llmstxt-shape, llmstxt-links, mcp-advert,
structured-data, title-meta, charset, content-type-sanity,
homepage-response. Ten are scoreable; homepage-response and
robots-not-blanket are informational readings by construction and
never count for or against a site, which is why a flawless site scores
10 of 10, not 12 of 12.
A typical run:
drift_summary. It costs nothing and returns a signed receipt
describing how many findings exist, their severity, and which lessons
are affected. Decide from that whether the full report is worth buying.verify_report with the receipt from step 1. Confirm the signature
is valid before you pay anything.drift_report (or drift_report_x402 if you are
paying with USDC). You get every finding with a file, a line number,
what is wrong, and the fix.verify_report again, this time passing the findings array you
just received alongside the same receipt. Confirm the hash matches -
this is what proves you got everything you paid for, not a trimmed
version of it.Every response carries a receipt object: a signed statement of what was
found, when, and by which key, chained to every report published before it.
verify_report does the check for you over MCP, but nothing about it is a
black box - the two files that do the actual work are short and readable:
oracle/receipt.py builds and signs a receipt: canonicalize the payload
(RFC 8785), hash it (SHA-256), sign the hash (Ed25519).worker/src/logic.ts does the same steps in TypeScript to check a
signature. Read both side by side and there is nothing left to take on
faith.oracle/verify_chain.py walks the full publication history in
oracle/chain.jsonl and confirms every signature is valid and every entry
links correctly to the one before it - the check a buyer or an outside
auditor would run against the whole record, not just one receipt.
skills/course-drift-check/SKILL.md is the correct procedure for using
this oracle, written for agents: audit the seller before paying, pay on
either rail, verify the goods after. It is free, and it is signed - the
receipt.json beside it commits to the file's exact SHA-256 under the
same Ed25519 key that signs every report, so an agent loading the skill
can prove it is running the procedure the operators published, unaltered
(oracle/sign_skill.py is the 100-line signer; verification needs
nothing from us). Signature proves provenance and integrity, not
correctness - the same boundary every receipt here draws.
Two rails carry identical goods:
Both rails currently run on testnets - MPP against the Tempo testnet,
x402 against Base Sepolia. The x402 rail's payment mechanics are proven
end to end: on 2026-08-28 a real testnet settlement cleared against the
live worker (the buyer client in clients/ signed a $0.25 USDC payment,
the facilitator settled it on Base Sepolia, and the client independently
verified the findings hash it paid for - 7 passed, 0 failed, 0 skipped).
No mainnet money has moved, and MPP settlement has not yet been exercised;
both stated plainly rather than glossed over. You can reproduce the proof
yourself: fund a throwaway wallet with faucet USDC (no ETH needed) and run
the buyer per "Wiring a real x402 payer" in clients/buyer/README.md.
Project-Office, the private repository this mirror is drawn from, holds
the day-to-day working process, deploy automation, and credentials. None of
that is needed to use or verify this service, so none of it is here.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/course-drift-oracle)<a href="https://allmcps.com/mcp/course-drift-oracle"><img src="https://allmcps.com/api/badge/course-drift-oracle?style=directory" alt="Course Drift Oracle on AllMCPs" /></a>