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 rules/titanzero/outlook-mcp/toon-responsesgit clone --depth 1 https://github.com/titanzero/outlook-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/rules/titanzero/outlook-mcp/toon-responses)<a href="https://agentmods.dev/rules/titanzero/outlook-mcp/toon-responses"><img src="https://agentmods.dev/badge/rules/titanzero/outlook-mcp/toon-responses.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.00000 | $0.00504 |
| Opus 5 | $0.00000 | $0.00252 |
| Sonnet 5 | $0.00000 | $0.00101 |
| Haiku 4.5 | $0.00000 | $0.00050 |
Grade A, and why
toon-responses 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 5d 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.
What it actually says
TOON Response Formatting
Purpose
TOON (Token-Oriented Object Notation) is the compact response mode controlled by config.RESPONSE_FORMAT / OUTLOOK_RESPONSE_FORMAT.
Handler Pattern
Each data-returning handler should provide both a structured payload and a text fallback, then call formatResponse():
const { formatResponse } = require('../utils/response-formatter');
const { makeResponse } = require('../utils/response-helpers');
const structured = { emails: rows };
const textFallback = `Found ${rows.length} emails:\n...`;
const text = formatResponse(structured, textFallback);
return makeResponse(text);
Data Shape Guidance
Tabular (arrays of uniform objects)
Use for list/search outputs where each row has the same shape:
{ emails: [
{ n: 1, unread: true, date: '...', from: '...', subject: '...', id: '...' },
{ n: 2, unread: false, date: '...', from: '...', subject: '...', id: '...' },
]}
TOON compresses this efficiently with a shared header.
Key-Value (single objects)
Use for detail responses (read-email, single event):
{ from: '...', to: '...', subject: '...', date: '...', body: '...' }
TOON-Specific Rules
- Always provide both structured data and text fallback.
- Keep structured output flat when possible; avoid deep nesting.
- Keep ISO dates/times in structured data.
- Format dates for readability only in the text fallback.
Formatter API (utils/response-formatter.js)
formatResponse(structuredData, textFallback)— returns TOON or text based on configformatAsToon(data)— always returns TOON stringisToonEnabled()— boolean check
Config and Tests
- Default mode is
'toon'. - Set
OUTLOOK_RESPONSE_FORMAT=textto force plain text. - In tests, set
process.env.OUTLOOK_RESPONSE_FORMAT = 'text'before module imports.
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.
- 5d ago First seen · 64 lines · 0 tokens per session scan A 3aaa5bbf62ac
toon-responses is a cursor rule published in the GitHub repository titanzero/outlook-mcp (1 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 504 tokens. A static security scan graded it A with 0 findings. It comes from a forked repository.
Other cursor rules, from other repositories
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.