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-powerpoint/mcp-server-guidegit clone --depth 1 https://github.com/sbroenne/mcp-server-powerpointWrote 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-powerpoint/mcp-server-guide)<a href="https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/mcp-server-guide"><img src="https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/mcp-server-guide.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.01737 | $0.01737 |
| Opus 5 | $0.00869 | $0.00869 |
| Sonnet 5 | $0.00347 | $0.00347 |
| Haiku 4.5 | $0.00174 | $0.00174 |
Grade A, and why
mcp-server-powerpoint mcp-server-guide.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 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.
How it starts
The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Server Development Guide
All tool methods in this project are synchronous — they return
string, notTask<string>. There is no async/await anywhere in theTools/classes; COM access viaIPresentationBatch.Executeis already synchronous from the caller's point of view (the async plumbing lives insidePresentationBatch, not in the tool methods).
LLM-Facing Content Rules
NO EMOJIS in LLM-consumed content — never use emoji characters in:
- Tool
[Description(...)]attributes and XML/// <summary>comments — the MCP SDK extracts these into the tool schema an LLM reads directly. skills/shared/*.mdand any future MCP prompt content.
Use plain text markers: "IMPORTANT:", "WARNING:", "NOTE:", "CRITICAL:".
DO keep emojis in user-facing content: README.md, this repo's own governance docs, and other human-read documentation — humans appreciate visual aids; LLM tool schemas do not need them and they cost tokens for no benefit.
Two Kinds of Tools: Hand-Written vs. Generated
Most of the MCP tool surface is generated, not hand-written. Before editing anything under
Tools/, know which kind you're touching:
- Hand-written (
PresentationTools.csonly): the singlepresentationMCP tool. It is action-dispatch like Excel's file tool, but stays hand-written because create/open/list/close need custom session-registry behavior and optionalsessionId. - Generated (everything else —
slide,shape,textframe,table,notes,layout,master,animation,image,media,chart,smartart,export): one action-dispatch tool per[ServiceCategory]Core domain, emitted byPowerPointMcp.Generators.Mcpfrom the Core interface's[ServiceCategory]/[McpTool]attributes and XML doc comments. Never hand-write a new tool class for one of these domains — add the operation to the Core interface (with XML docs) and the generator picks it up. Seearchitecture-patterns.instructions.md's Command Pattern section for the Core-side attribute shape.
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 · 160 lines · 1,737 tokens per session scan A b47f4c57051f
mcp-server-powerpoint mcp-server-guide.instructions.md is an instructions file published in the GitHub repository sbroenne/mcp-server-powerpoint (19 stars, last pushed yesterday), licensed MIT. It adds 1,737 tokens to every session, about $0.0087 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-excel llm-testing-philosophy.instructions.md
Instructions for sbroenne/mcp-server-excel, covering llm testing philosophy, what are llm tests?, the golden rule, what never belongs in a test and ❌ xfail or skip markers.
mcp-server-excel readme-management.instructions.md
Instructions for sbroenne/mcp-server-excel, covering readme management - quick reference, core entry documents, feature documentation, critical rules and tool & action counts must match.
mcp-server-excel development-workflow.instructions.md
Instructions for sbroenne/mcp-server-excel, covering development workflow, branch protection, development process, pr review comment workflow and retrieve inline code review comments using github cli.
mcp-server-excel copilot-instructions.md
Copilot instructions for sbroenne/mcp-server-excel, covering github copilot instructions - excelmcp, repository map, environment, working rules and build and validation.
mcp-server-excel extension-development.instructions.md
Instructions for sbroenne/mcp-server-excel, covering vs code extension development instructions, extension overview, changelog and changesets (critical), version management and automatic version management (unified release workflow).
mcp-server-excel excel-connection-types-guide.instructions.md
Instructions for sbroenne/mcp-server-excel, covering excel connection types - llm quick reference, critical: loadto operation limitations, connection action compatibility, decision tree: connection vs power query and recommended workflows.