@tiwater/office-mcp 0.16.11 → 0.16.12

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.16.11"
5
+ "version": "0.16.12"
6
6
  },
7
7
  "tools": [
8
8
  {
package/office/index.mjs CHANGED
@@ -214,14 +214,14 @@ const tools = [
214
214
  },
215
215
  {
216
216
  name: 'docx_copy_table_rows',
217
- description: 'Create a new DOCX by replacing selected target table row ranges with selected source rows, using explicit source-to-target header cell mappings while retaining target presentation.',
217
+ description: 'Populate existing target tables by replacing selected data-row ranges with selected source rows. Use this whenever the target table already exists; explicit header-cell mappings preserve target presentation and native source grouping even when source and target grid spans differ.',
218
218
  inputSchema: inputContract('docx_copy_table_rows'),
219
219
  outputSchema: fixedEditOutput('docx_copy_table_rows'),
220
220
  handler: args => fixedEdit('docx_copy_table_rows', args),
221
221
  },
222
222
  {
223
223
  name: 'docx_copy_object',
224
- description: 'Create a new output by copying targetDocument and applying one or more selected-object insertions under selected target parent objects.',
224
+ description: 'Insert selected objects only when the target needs a new object under an existing parent. Do not use this to populate or replace rows in an existing target table; use docx_copy_table_rows instead.',
225
225
  inputSchema: inputContract('docx_copy_object'),
226
226
  outputSchema: fixedEditOutput('docx_copy_object'),
227
227
  handler: args => fixedEdit('docx_copy_object', args),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiwater/office-mcp",
3
- "version": "0.16.11",
3
+ "version": "0.16.12",
4
4
  "description": "Published MCP server for Tiwater Office document capabilities",
5
5
  "type": "module",
6
6
  "license": "MIT",