Borrowing it
Nothing to install: this file belongs to oshriagronov/braude-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/oshriagronov/braude-mcp/main/AGENTS.mdgit clone --depth 1 https://github.com/oshriagronov/braude-mcpWrote 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.
[](https://agentmods.dev/instructions/oshriagronov/braude-mcp/agents-md)<a href="https://agentmods.dev/instructions/oshriagronov/braude-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/oshriagronov/braude-mcp/agents-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/oshriagronov/braude-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/oshriagronov/braude-mcp/agents-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.03053 | $0.03053 |
| Opus 5 | $0.01527 | $0.01527 |
| Sonnet 5 | $0.00611 | $0.00611 |
| Haiku 4.5 | $0.00305 | $0.00305 |
Grade A, and why
braude-mcp AGENTS.md scanned grade A with 2 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://<worker>.workers.dev/sync -H "Authorization: Bearer $SYNC_SECRET" Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- Do NOT introduce persistent filesystem operations, long-lived background timers (`setInterval`), or Node.js native binary dependencies (`fs`, `child_process`). How it starts
The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — AI Agent Guide for Braude MCP
Welcome! This repository contains a remote, serverless Model Context Protocol (MCP) server for Ort Braude College of Engineering (מכללת עזריאלי / אורט בראודה), deployed on Cloudflare Workers.
This guide is designed for AI coding assistants (e.g., Antigravity, Claude Code, Cursor, Windsurf, Codex, Gemini Spark) working on or maintaining this codebase.
🎯 Project Goal & Scope
- Primary Goal: Provide AI assistants with live, structured access to Ort Braude College's public academic data:
- Academic Calendar: Important academic dates, semester start/end dates, exam periods, registration windows, and holidays.
- Course Search: Querying the college course catalog by keyword, course code, or department name.
- Course Schedules: Detailed group slots, lecture/lab schedules, assigned professors, days, hours, and classrooms.
- Query source: Every MCP tool and resource always serves scraped data from the database (Cloudflare D1, or the bundled scraped seed if D1 has no row). Never hardcoded dates, hours, instructors, credits, or syllabus text. If nothing scraped is stored, return an error — do not invent a fallback.
- Protocol: Implements standard MCP (Model Context Protocol) over JSON-RPC 2.0 over HTTP POST (
/mcp). - Platform: Serverless Cloudflare Workers (V8 edge isolates).
🛠️ Technology Stack
| Layer | Technology | Description |
|---|---|---|
| Runtime | Cloudflare Workers | Serverless V8 edge isolate environment (nodejs_compat enabled) |
| Web Server / Framework | Hono (hono v4) |
Lightweight, fast HTTP router for Workers |
| Protocol Specification | MCP SDK (@modelcontextprotocol/sdk v1.5) |
Handles JSON-RPC 2.0 protocol schemas & RPC dispatching |
| Parsing & Scraping | Cheerio (cheerio v1) & Native fetch |
Serverless HTML parsing of public college portals |
| Validation | Zod (zod v3) |
Type-safe schema validation for tool input arguments |
| Testing | Vitest (vitest v2) |
Unit and integration test runner |
| Language | TypeScript (v5.6) | Strict mode, target ES2022 |
| Deployment | Wrangler (wrangler v3) |
Cloudflare CLI & build tool |
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.
- 2d ago Changed · +10 lines · +487 tokens per session c739c8b09a19
- 4d ago Changed · +17 lines · +260 tokens per session 5d8e53ac08b8
- 8d ago First seen · 173 lines · 2,306 tokens per session scan A 532ce3cca1de
braude-mcp AGENTS.md is an instructions file published in the GitHub repository oshriagronov/braude-mcp (1 stars, last pushed 2d ago), licensed MIT. It adds 3,053 tokens to every session, about $0.0153 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.