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/prizmprograms/excel-mcp-server/copilot-instructionsgit clone --depth 1 https://github.com/prizmPrograms/excel-mcp-serverWhat 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.01446 | $0.01446 |
| Opus 5 | $0.00723 | $0.00723 |
| Sonnet 5 | $0.00289 | $0.00289 |
| Haiku 4.5 | $0.00145 | $0.00145 |
Grade A, and why
excel-mcp-server copilot-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 2d 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 — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excel MCP Server - Copilot Instructions
MCP (Model Context Protocol) server that enables VBA automation in running Excel instances on Windows via COM interop.
Build and Test Commands
# Build (compiles TypeScript + copies PowerShell script)
npm run build
# Watch mode for development
npm run watch
# Run the MCP server
node dist/index.js
No automated tests exist. Manual testing requires:
- Excel running with workbook open
- MCP server running
- MCP client (e.g., Claude Desktop) connected
Architecture
Three-Layer Design
-
excel-com.ps1 (PowerShell)
- Direct COM automation of Excel Application objects
- Functions named like
Get-VBAModules,Set-Code,Run-Macro - Returns JSON via
ConvertTo-Json - Exits with code 1 on errors (stderr captured)
-
excel-wrapper.ts (TypeScript)
- Spawns PowerShell with
-ExecutionPolicy Bypassto run excel-com.ps1 - Maps JavaScript methods to PowerShell commands
- Parses JSON responses and handles errors
- Uses ES modules (
.jsextensions in imports required)
- Spawns PowerShell with
-
index.ts (MCP Server)
- Implements MCP SDK server using StdioServerTransport
- Defines tool schemas (input/output descriptions)
- Routes tool calls to ExcelWrapper methods
- Returns results as MCP tool responses
Key Design Decisions
Why PowerShell instead of native Node.js COM?
- Avoids dependency on
winaxor similar native modules that require Visual Studio Build Tools - PowerShell has built-in COM support on Windows
- Reduces installation friction for users
Why -ExecutionPolicy Bypass?
- Script execution policy varies by system configuration
- Bypass ensures scripts run without requiring system-wide policy changes
- Safe since script path is controlled by this package
Module Type Constants (VBA)
1: Standard Module (for Sub/Function procedures)2: Class Module3: UserForm
Important Conventions
VBA Module Naming
Module names MUST follow VBA rules:
- Start with a letter (A-Z, a-z) - NOT underscore or number
- No spaces or special characters (underscore is allowed)
- Maximum 31 characters
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.
- 2d ago First seen · 167 lines · 1,446 tokens per session scan A 3f731930c082
excel-mcp-server copilot-instructions.md is an instructions file published in the GitHub repository prizmPrograms/excel-mcp-server (5 stars, last pushed 5mo ago), licensed MIT. It adds 1,446 tokens to every session, about $0.0072 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
mcp-server-excel excel-com-interop.instructions.md
Instructions for sbroenne/mcp-server-excel, covering excel com interop, api selection, batch execution and exceptions, com lifetime and excel application state.
mcp-server-excel mcp-llm-guidance.instructions.md
Instructions for sbroenne/mcp-server-excel, a project described as: Automate real Microsoft Excel with AI via MCP Server or CLI — Power Query, DAX, VBA, PivotTables, charts, and 326 operations.
excel-mcp-server CLAUDE.md
Instructions for TangentDomain/excel-mcp-server, covering excel mcp server, 技术栈, 目录结构, mcp 工具 → python api 映射 and sql 核心原则.
excel-analyst-pro-skill-md CLAUDE.md
Claude Code instructions for jeremylongshore/excel-analyst-pro-skill-md, covering claude.md — excel analyst pro, what this repo is, architecture, conventions and validation.
fcp-sheets CLAUDE.md
Instructions for os-tack/fcp-sheets, covering fcp-sheets, project overview, architecture, key patterns and commands.
Excel-Power-Pivot-MCP CLAUDE.md
Instructions for back1ply/Excel-Power-Pivot-MCP, covering claude.md, project overview, build and test commands, build and debug build.