Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/skills/mrgorrin40-tp/mcp-excel-server/excel-reading)<a href="https://agentmods.dev/skills/mrgorrin40-tp/mcp-excel-server/excel-reading"><img src="https://agentmods.dev/badge/skills/mrgorrin40-tp/mcp-excel-server/excel-reading.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.00016 | $0.01074 |
| Opus 5 | $0.00008 | $0.00537 |
| Sonnet 5 | $0.00003 | $0.00215 |
| Haiku 4.5 | $0.00002 | $0.00107 |
Grade A, and why
excel-reading 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 7d 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 — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excel Reading Skill
This skill enables AI agents to efficiently read and extract data from Excel files (.xlsx) using the MCP Excel Server.
When to Use
Use this skill when the user wants to:
- Read data from an Excel file
- Extract specific cells or ranges
- Get metadata about worksheets
- Search for values in spreadsheets
- Understand the structure of a workbook
Prerequisites
- MCP Excel Server must be running and configured
- The Excel file must exist and be accessible
- File path must be absolute (e.g.,
C:/Documents/data.xlsxon Windows or/home/user/data.xlsxon Linux)
Reading Strategies
1. Reading Single Cells
Use read_cell for individual values:
Tool: read_cell
Parameters:
file_path: "absolute/path/to/file.xlsx"
sheet_name: "Sheet1"
cell: "A1"
Best Practices:
- Use cell references in A1 notation (e.g., "B2", "C10")
- Sheet names are case-sensitive
- Returns the cell value as-is (string, number, date, etc.)
2. Reading Ranges
Use read_range for multiple cells:
Tool: read_range
Parameters:
file_path: "absolute/path/to/file.xlsx"
sheet_name: "Sheet1"
range: "A1:C10"
Best Practices:
- Use range notation: "A1:C10" (top-left:bottom-right)
- For large datasets, use pagination with
page_sizeparameter - Default page size is 100 rows
3. Getting Sheet Information
Use get_sheet_info to understand structure:
Tool: get_sheet_info
Parameters:
file_path: "absolute/path/to/file.xlsx"
sheet_name: "Sheet1"
Returns:
- Column names and types
- Row count
- Used range
- Sample data
4. Searching for Values
Use search_cells to find data:
Tool: search_cells
Parameters:
file_path: "absolute/path/to/file.xlsx"
query: "search term"
sheet_name: "Sheet1" # optional, searches all sheets if omitted
5. Listing All Sheets
Use list_sheets to see available worksheets:
Tool: list_sheets
Parameters:
file_path: "absolute/path/to/file.xlsx"
6. Describing Workbook Structure
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.
- 7d ago First seen · 176 lines · 16 tokens per session scan A e0d43b75eaa3
excel-reading is a skill published in the GitHub repository mrgorrin40-TP/mcp-excel-server (0 stars, last pushed 2mo ago), licensed MIT. It adds 16 tokens to every session and 1,074 once invoked, about $0.0001 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 skills, from other repositories
dcf-model
Build discounted cash flow valuation workbooks in Excel.
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
google-drive-sheets
Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
large-file-parquet-analysis-and-highlight
A workflow for processing large Excel workbooks by counting their rows, converting them to Parquet when needed, and finding maximum values. Parquet is a data-file format designed for efficient reading.
excel-basic-statistics-and-routing
An Excel workflow for filtering grouped data, calculating averages, extracting row ranges, removing duplicates, and adding totals.