xlsx-for-ai 3.0.4 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/annotations.js +13 -1
- package/package.json +1 -1
package/lib/annotations.js
CHANGED
|
@@ -65,14 +65,26 @@ const TOOL_ANNOTATIONS = Object.freeze({
|
|
|
65
65
|
xlsx_protection: { title: 'List Excel protection settings', readOnlyHint: true, destructiveHint: false },
|
|
66
66
|
xlsx_styles: { title: 'List Excel cell styles', readOnlyHint: true, destructiveHint: false },
|
|
67
67
|
xlsx_verify_stamp: { title: 'Verify Excel integrity stamp', readOnlyHint: true, destructiveHint: false },
|
|
68
|
+
xlsx_verify_receipt: { title: 'Verify Excel provenance receipt', readOnlyHint: true, destructiveHint: false },
|
|
69
|
+
xlsx_read_handle: { title: 'Read Excel by handle', readOnlyHint: true, destructiveHint: false },
|
|
70
|
+
xlsx_healer_diagnose: { title: 'Diagnose Excel external references', readOnlyHint: true, destructiveHint: false },
|
|
71
|
+
xlsx_healer_simulate: { title: 'Simulate Excel reference repair', readOnlyHint: true, destructiveHint: false },
|
|
68
72
|
|
|
69
|
-
// ---- Writing — non-destructive:
|
|
73
|
+
// ---- Writing — non-destructive: 9 Save-As-shape tools -----------------
|
|
70
74
|
// Source workbook is preserved; output goes to a new path or returned bytes.
|
|
71
75
|
xlsx_write: { title: 'Write Excel file', readOnlyHint: false, destructiveHint: false },
|
|
72
76
|
xlsx_redact: { title: 'Redact Excel file', readOnlyHint: false, destructiveHint: false },
|
|
73
77
|
xlsx_convert: { title: 'Convert Excel to other format', readOnlyHint: false, destructiveHint: false },
|
|
74
78
|
xlsx_data_clean: { title: 'Clean Excel data', readOnlyHint: false, destructiveHint: false },
|
|
75
79
|
xlsx_stamp: { title: 'Stamp Excel with integrity verification', readOnlyHint: false, destructiveHint: false },
|
|
80
|
+
xlsx_receipt: { title: 'Generate Excel provenance receipt', readOnlyHint: false, destructiveHint: false },
|
|
81
|
+
xlsx_healer_cure: { title: 'Repair Excel external references', readOnlyHint: false, destructiveHint: false },
|
|
82
|
+
xlsx_healer_intent: { title: 'Generate Excel repair-intent file', readOnlyHint: false, destructiveHint: false },
|
|
83
|
+
|
|
84
|
+
// ---- Stateful session write: 1 tool -----------------------------------
|
|
85
|
+
// Mutates session-scoped state on the server (reversible by a follow-up call).
|
|
86
|
+
xlsx_session_set_validations:
|
|
87
|
+
{ title: 'Set Excel session validation rules', readOnlyHint: false, destructiveHint: false },
|
|
76
88
|
|
|
77
89
|
// ---- External side-effects — destructive: 2 tools ---------------------
|
|
78
90
|
// A post can't be undone; the message lands in a third-party system.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xlsx-for-ai",
|
|
3
3
|
"mcpName": "io.github.senoff/xlsx-for-ai",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.6",
|
|
5
5
|
"description": "The MCP server that makes LLMs reliable on real-world Excel spreadsheets. Thin npm client over a hosted API — read, write, diff, redact, and supervise .xlsx files from any MCP-aware agent.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|