@tiwater/office-mcp 0.15.9 → 0.15.10

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.
@@ -2,7 +2,7 @@
2
2
  "schema": "tiwater.office-provider-contract-manifest/v1",
3
3
  "provider": {
4
4
  "id": "@tiwater/office-mcp",
5
- "version": "0.15.9"
5
+ "version": "0.15.10"
6
6
  },
7
7
  "tools": [
8
8
  {
package/office/index.mjs CHANGED
@@ -126,7 +126,7 @@ const docxFixedTools = [
126
126
  {"name":"docx_set_table_cell_rich_text","description":"Set current body table cell rich text."},
127
127
  {"name":"docx_insert_table_rows","description":"Insert rows into a current body table."},
128
128
  {"name":"docx_delete_table_rows","description":"Delete current body table row ranges."},
129
- {"name":"docx_replace_table_rows","description":"Replace current body table row ranges."},
129
+ {"name":"docx_replace_table_rows","description":"Replace a current body table range with explicit final rows. Use when values must be regrouped, filtered, assigned to different semantic columns, or given explicit gridSpan/vMerge states; matching template-row styles are retained."},
130
130
  {"name":"docx_insert_table_columns","description":"Insert columns into a current body table."},
131
131
  {"name":"docx_set_table_width","description":"Set current body table widths."},
132
132
  {"name":"docx_set_table_cell_alignment","description":"Set current body table cell alignment."},
@@ -227,7 +227,7 @@ const tools = [
227
227
  },
228
228
  {
229
229
  name: 'docx_copy_table_range',
230
- description: 'Copy contiguous source row refs into contiguous target row-pattern refs with an explicit one-to-one logical grid-column mapping. Get row refs from list/find with kind=row; merged cells span grid columns, and one physical cell may be selected only once.',
230
+ description: 'Copy contiguous source rows verbatim, one source row per output row, into a repeating target row pattern whose mapped vertical-merge topology already matches the source. This does not regroup rows, change semantic columns, remove translations, or rewrite values; use docx_replace_table_rows for those operations. Get row refs from list/find with kind=row; a merged physical cell may be selected only once.',
231
231
  inputSchema: inputContract('docx_copy_table_range'),
232
232
  outputSchema: fixedEditOutput('docx_copy_table_range'),
233
233
  handler: args => fixedEdit('docx_copy_table_range', args),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiwater/office-mcp",
3
- "version": "0.15.9",
3
+ "version": "0.15.10",
4
4
  "description": "Published MCP server for Tiwater Office document capabilities",
5
5
  "type": "module",
6
6
  "license": "MIT",