@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.
package/office/index.mjs
CHANGED
|
@@ -214,14 +214,14 @@ const tools = [
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
name: 'docx_copy_table_rows',
|
|
217
|
-
description: '
|
|
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: '
|
|
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),
|