mcp-server-powerpoint mcp-server-guide.instructions.md

mcp-server-powerpoint mcp-server-guide.instructions.md is an instructions file for GitHub Copilot from sbroenne/mcp-server-powerpoint. It costs 1,737 tokens per session, scanned A, original, MIT.

A development guide for an MCP server, a program that exposes actions for an AI assistant to call, in the PowerPointMcp project. It covers tool types, synchronous code, error handling, and rules for text shown to AI systems.

In plain words
What is it for?
Use it when adding or changing PowerPointMcp tools, deciding whether a tool is generated or hand-written, handling failures, and writing AI-facing descriptions.
Why use it?
It reduces mistakes caused by editing generated tools incorrectly, returning the wrong type, or putting unsuitable content into tool descriptions.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/sbroenne/mcp-server-powerpoint/mcp-server-guide
Clone the repo
git clone --depth 1 https://github.com/sbroenne/mcp-server-powerpoint

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for mcp-server-powerpoint mcp-server-guide.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sbroenne/mcp-server-powerpoint/mcp-server-guide.svg)](https://agentmods.dev/instructions/sbroenne/mcp-server-powerpoint/mcp-server-guide)
Your own site
<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>
Per session 1,737 This file is loaded in full into every session.
When invoked 1,737 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash b47f4c57051f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.github/instructions/mcp-server-guide.instructions.md · 160 lines

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, not Task<string>. There is no async/await anywhere in the Tools/ classes; COM access via IPresentationBatch.Execute is already synchronous from the caller's point of view (the async plumbing lives inside PresentationBatch, 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/*.md and 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.cs only): the single presentation MCP 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 optional sessionId.
  • 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 by PowerPointMcp.Generators.Mcp from 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. See architecture-patterns.instructions.md's Command Pattern section for the Core-side attribute shape.

Read the full file on GitHub · 160 lines

Changes

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.

  1. 5d ago First seen · 160 lines · 1,737 tokens per session scan A b47f4c57051f

Subscribe to this mod's changes

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.

Related

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.

sbroenne/mcp-server-excel · 3,451 tokens

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.

sbroenne/mcp-server-excel · 2,648 tokens

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.

sbroenne/mcp-server-excel · 1,518 tokens

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.

sbroenne/mcp-server-excel · 1,206 tokens

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).

sbroenne/mcp-server-excel · 1,427 tokens

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.

sbroenne/mcp-server-excel · 1,113 tokens