Tools reference

Complete reference of every tool the GroupDocs.Conversion MCP server exposes to AI agents, with parameters, example prompts, and results. Captured from a live tools/list call against server version 26.7.2 (raw capture: tools-list.generated.json in this section’s source).

ToolWhat it does
convertConverts a document to a different format and saves the result to storage
get_supported_formatsLists every target format the source document can be converted to
get_document_infoReturns file type, page count, and basic document properties

The FileInput shape

Every tool takes its document through the same file object — pass either a name from your storage folder or inline content:

{ "file": { "filePath": "report.docx" } }
FieldTypeDescription
filePathstringFile path or name in the configured storage folder
fileContentstringBase64-encoded file content (alternative to filePath)
fileNamestringOriginal filename with extension — required with fileContent

You rarely write this JSON yourself: the AI agent does, from your plain-language prompt. Missing files are not an error to fear — the tool responds with the list of available files so the agent can correct itself.