Borrowing it
Nothing to install: this file belongs to kts982/mcp-sap-gui. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/kts982/mcp-sap-gui/master/.claude/commands/sap-table-dump.mdgit clone --depth 1 https://github.com/kts982/mcp-sap-guiWrote 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/commands/kts982/mcp-sap-gui/sap-table-dump)<a href="https://agentmods.dev/commands/kts982/mcp-sap-gui/sap-table-dump"><img src="https://agentmods.dev/badge/commands/kts982/mcp-sap-gui/sap-table-dump.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.00000 | $0.00420 |
| Opus 5 | $0.00000 | $0.00210 |
| Sonnet 5 | $0.00000 | $0.00084 |
| Haiku 4.5 | $0.00000 | $0.00042 |
Grade A, and why
sap-table-dump 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 8d 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.
What it actually says
Read ALL rows from the table on the current SAP screen, handling pagination for both ALV grids and TableControls.
The user wants: $ARGUMENTS
Steps:
- Connect to the existing SAP session using
sap_connect_existing - Get screen info with
sap_get_screen_infoto confirm we're on the right screen - Discover screen elements with
sap_get_screen_elementsto find the table element ID - Identify the table — look for elements with type containing
GuiGridView(ALV) orGuiTableControl - Read the table with
sap_read_tableusing a generousmax_rows(e.g., 500) - Check the
table_typein the response:
If GuiGridView (ALV):
- ALV grids handle scrolling internally — one
sap_read_tablecall gets all rows up tomax_rows - If
total_rows>rows_returned, increasemax_rowsand re-read - Get column info with
sap_get_column_infofor proper column headers
If GuiTableControl:
- TableControls only show visible rows at a time
- Check
total_rows,first_visible_row, androws_returnedin the response - If there are more rows beyond what's visible:
a. Collect the current page of data
b. Use
sap_scroll_table_controlto scroll to the next page (position= currentfirst_visible_row+rows_returned) c. Read again withsap_read_tabled. Repeat until you've collected all rows or reachedtotal_rows - Watch for padding rows (all-empty values) at the end of a page — stop collecting when you see them
After collecting all data:
- Present the data as a well-formatted markdown table
- Include column headers (use titles from
sap_get_column_infoif available) - Report total row count and any truncation
- If the user provided specific filter criteria, highlight matching rows
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.
- 8d ago First seen · 33 lines · 0 tokens per session scan A 9d33ee7e1776
sap-table-dump is a command published in the GitHub repository kts982/mcp-sap-gui (31 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 420 tokens. 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 commands, from other repositories
playwright-test-coverage
Produce test coverage.
playwright-test-generate
Generate tests for the test plan's bullet 1. Adding Todos. Generate one test at a time, never in parallel.
playwright-test-heal
Run all my tests and fix the failing ones.
playwright-test-plan
Create test plan for basic operations of the todo app. Test plan should contain around 20 tests.
validate-pipeline
Validate data pipeline configuration and data quality rules.
interactive-dev
Start a persistent interactive development session with natural language browser control, auto-error monitoring, and full dev tool access.