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.
npx agentmods add instructions/elfensky/macos-apps-mcp/agents-mdgit clone --depth 1 https://github.com/elfensky/macos-apps-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/elfensky/macos-apps-mcp/agents-md)<a href="https://agentmods.dev/instructions/elfensky/macos-apps-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/elfensky/macos-apps-mcp/agents-md.svg" alt="Measured on agentmods" 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.01275 | $0.01275 |
| Opus 5 | $0.00638 | $0.00638 |
| Sonnet 5 | $0.00255 | $0.00255 |
| Haiku 4.5 | $0.00128 | $0.00128 |
Grade A, and why
macos-apps-mcp 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.
How it starts
The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — macos-apps-mcp
One consolidated MCP server for native macOS apps. Python + FastMCP, managed with uv.
Full design and rationale: DESIGN.md.
Touching Mail? Read docs/mail-applescript-facts.md FIRST.
Device-verified traps that code review cannot catch — delete after send is a silent no-op, a
compose window is a recipient-less outgoing message, writing content on a forward destroys the
attachments, and Mail's Drafts autosave lands ~15s late so a 3-second check reports a clean
mailbox and lies. Verify every Mail write by running it and inspecting the resulting message;
three reviews and a green suite once passed a forward that delivered empty mail and ate 7
attachments.
Architecture (don't drift)
- FastMCP standalone. Tools in
macos_apps_mcp/server.pyare thin dispatch to adapters — no business logic in the tool layer. - Adapters = typed
Protocol(macos_apps_mcp/contracts.py): reads uniform (get_pointers -> list[Pointer]), writes per-adapter typed (create_reminder(ReminderData),create_event(CalendarEventData)). No ABC, no plugin registry (YAGNI).Pointer(id, summary, deeplink)is the citation contract — pointers, not payload (no full bodies by default). - All EventKit / native access goes through
macos_apps_mcp/runtime.run_native()— a single serialized worker thread (EKEventStore thread-affinity + TCC). Never call EventKit off arbitrary threads, and never widen the executor pastmax_workers=1. - One adapter module per app under
macos_apps_mcp/adapters/. Adding an app = add a module + mount its tools inserver.py+ (if the app is reached via osascript/Automation) add its name todoctor._AUTOMATION_APPSsodoctorprobes it; it must not reach into another adapter. This is what lets a module later harden into alyfenative data-plane adapter unchanged. - The shim↔daemon hop has NO read deadline (
daemon._uds_client_factory,Timeout(None, connect=10.0)). A call's duration is the daemon's business — a bulk Mail pass runs HOURS — and it is a local socket with no network to time out on. Per-operation limits belong in the adapter, which knows what it asked for. Never "fix" a hang by adding a timeout here: that is #170, where httpx's own 5s default silently killed every destructive Mail call over ~5s. A dead stream must ANSWER (fail_loud_on_dead_stream) — silence is what a model misreads as failure, then retries a destructive call that already succeeded. - Three capability tiers, all gated at registration (a gated-off tool is absent, never
registered-and-erroring): read → write (
@_write_tool/@_additive_tool, skipped byMACOS_APPS_READ_ONLY) → outbound (@_send_tool("<adapter>"), registered only whenMACOS_APPS_ALLOW_SENDnames that adapter;READ_ONLYwins unconditionally). Outbound acts off this machine, so it carriesopenWorldHintand defaultsdry_run=True— and its dry-run path must make no native call at all (building a Mailoutgoing messagecan strand an autosaved draft). A new send tool goes through_send_toolortests/test_tool_annotations.pyfails.
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.
- 4d ago First seen · 80 lines · 1,275 tokens per session scan A 4abc8b88f197
macos-apps-mcp AGENTS.md is an instructions file published in the GitHub repository elfensky/macos-apps-mcp (0 stars, last pushed today), licensed MIT. It adds 1,275 tokens to every session, about $0.0064 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-31.
Other instructions, from other repositories
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).
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.
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.
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.
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).