convert_to_pdf
Transform Word documents into PDF format using standardized processing. Ideal for managing file compatibility and sharing needs directly within the Office Word MCP Server.
Instructions
Convert a Word document to PDF format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
output_filename | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"output_filename": {
"default": null,
"title": "Output Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}