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/sbroenne/mcp-server-excel/excel-com-interopgit clone --depth 1 https://github.com/sbroenne/mcp-server-excelWrote 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/sbroenne/mcp-server-excel/excel-com-interop)<a href="https://agentmods.dev/instructions/sbroenne/mcp-server-excel/excel-com-interop"><img src="https://agentmods.dev/badge/instructions/sbroenne/mcp-server-excel/excel-com-interop.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 | $0.00696 | $0.00696 |
| Opus 5 | $0.00348 | $0.00348 |
| Sonnet 5 | $0.00139 | $0.00139 |
| Haiku 4.5 | $0.00070 | $0.00070 |
Grade A, and why
mcp-server-excel excel-com-interop.instructions.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 — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excel COM interop
API selection
- Prefer strongly typed
Microsoft.Office.Interop.Excelmembers. - Use
dynamiconly for a documented PIA or runtime dependency gap. Add the justification required byscripts\check-dynamic-casts.ps1. - Confirm unfamiliar Excel Object Model behavior in Microsoft documentation and a proven interop implementation before coding.
- Excel collections are one-based.
- Do not assume a COM numeric property's runtime type. Use
Convert.ToInt32,Convert.ToDouble, or another explicit conversion when marshaling can vary.
Batch execution and exceptions
Validate .NET inputs before batch.Execute; perform COM work on its STA callback.
Do not catch broad exceptions merely to return an error result. The batch and
service layers own failure transport.
Specific catches are acceptable for a known HRESULT, a bounded retry, or best-effort cleanup. Never use an empty catch or silently substitute a success-shaped fallback.
COM lifetime
Every acquired COM reference uses nullable locals and reverse-order cleanup:
return batch.Execute((ctx, ct) =>
{
Excel.Worksheet? sheet = null;
Excel.Range? range = null;
try
{
sheet = ComUtilities.FindSheet(ctx.Book, sheetName)
?? throw new InvalidOperationException(
$"Worksheet '{sheetName}' was not found.");
range = sheet.Range[address];
return ReadRange(range);
}
finally
{
ComUtilities.Release(ref range);
ComUtilities.Release(ref sheet);
}
});
- Release intermediate objects too, including collections and objects returned by chained property access.
- Do not release shared session-owned
ctx.Apporctx.Bookreferences. - Do not force garbage collection as a substitute for deterministic release.
- Run
scripts\check-com-leaks.ps1after interop changes.
Excel application state
ExcelWriteGuardalready suppresses and restoresScreenUpdatingaroundExecute; do not repeat it in commands.- Do not globally suppress
EnableEventsorCalculation. - Calculation suppression belongs only in established bulk value/formula write
paths and must restore the original state in
finally. - Restore any changed application or workbook state on every exit path.
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 · 93 lines · 696 tokens per session scan A c7a75505c5f7
mcp-server-excel excel-com-interop.instructions.md is an instructions file published in the GitHub repository sbroenne/mcp-server-excel (653 stars, last pushed yesterday), licensed MIT. It adds 696 tokens to every session, about $0.0035 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.
Other instructions, from other repositories
mcp-server-powerpoint copilot-instructions.md
Copilot instructions for sbroenne/mcp-server-powerpoint, covering project instructions — powerpointmcp, critical files (read these first), sister projects, what is powerpointmcp? and session model (mcp server).
mcp-server-powerpoint architecture-patterns.instructions.md
Instructions for sbroenne/mcp-server-powerpoint, covering architecture patterns, .net class design (mandatory), layered architecture (critical), command pattern and structure (per domain).
mcp-server-powerpoint critical-rules.instructions.md
Instructions for sbroenne/mcp-server-powerpoint, covering critical rules - must follow, rule 1: success/errormessage invariant, rule 1b: no exception suppression in core, rule 30: real-com integration tests only, strict tdd and rule: 1-based indexing everywhere.
mcp-server-powerpoint mcp-server-guide.instructions.md
Instructions for sbroenne/mcp-server-powerpoint, covering mcp server development guide, llm-facing content rules, two kinds of tools: hand-written vs. generated, implementation pattern: single hand-written dispatch tool and error handling (mandatory).
mcp-server-powerpoint testing-strategy.instructions.md
Instructions for sbroenne/mcp-server-powerpoint, covering testing strategy, strict tdd (red → green), test project layout, serialization is mandatory and trait tagging (required for surgical filtering).
mcp-server-powerpoint code-review.instructions.md
Instructions for sbroenne/mcp-server-powerpoint, covering copilot code review, interop and resource safety, contract and path completeness and protocol, tests, and user-facing surfaces.