Office Word MCP Server

by GongRzhe
Verified

add_picture

Add an image to a Word document.

Args: filename: Path to the Word document image_path: Path to the image file width: Optional width in inches (proportional scaling)

Input Schema

NameRequiredDescriptionDefault
filenameYes
image_pathYes
widthNo

Input Schema (JSON Schema)

{ "properties": { "filename": { "title": "Filename", "type": "string" }, "image_path": { "title": "Image Path", "type": "string" }, "width": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null, "title": "Width" } }, "required": [ "filename", "image_path" ], "title": "add_pictureArguments", "type": "object" }