Bilig WorkPaper
io.github.proompteng/bilig-workpaperFormula-backed WorkPaper tools for workbook readback, input edits, and JSON persistence.
Tools · 8
Discover sheet names and used dimensions before reading or editing a WorkPaper. Returns metadata only; use read_range or read_cell for values.
Read calculated values plus serialized formulas/inputs for an A1 range. Use for audit readback after edits; use read_cell for one address.
Read one cell with calculated value, display text, formula text, formula diagnostics, and serialized content. Use after set_cell_contents to verify readback.
Write raw content to one cell and recalculate dependents in memory only. Start with --writable when the edit should persist to JSON.
Write raw content to one cell, recalculate dependents, read a dependent range in the same tool call, and return persistence proof. Use this for stateless MCP clients such as hosted Open WebUI integrat…
Return the formatted display string for one cell. Use when an agent needs what a user would see, not the raw numeric value.
Export the current WorkPaper JSON document for persistence, review, or handoff to another agent. Does not write files by itself.
Validate formula syntax with the WorkPaper parser before writing it to a cell. This checks syntax only; use set_cell_contents plus readback to evaluate.
Resources · 4
Live manifest of the current WorkPaper file, available tools, prompts, resources, and verification contract.
bilig://workpaper/manifest
Compact instructions for agents that need to edit workbook formulas without spreadsheet UI automation.
bilig://workpaper/agent-handoff
Current sheet names and used dimensions for the loaded WorkPaper document.
bilig://workpaper/sheets
Current persisted WorkPaper JSON document as exported from the in-memory engine.
bilig://workpaper/current-document
Prompts · 2
Guide an agent through a safe WorkPaper edit: read before, validate target, write one cell, read computed output, export JSON, and report proof.
Guide an agent through formula validation and readback when a WorkPaper formula or dependent output looks wrong.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"bilig_workpaper": {
"url": "https://bilig.proompteng.ai/mcp",
"transport": "streamable-http"
}
}
}