The ConvertAPI MCP Node integrates securely with ConvertAPI's file conversion API through the Scalekit MCP gateway. It enables your AI agent to convert files between formats, discover supported conversion parameters, find converters by tags, request upload URLs, and search available converters.
Parameters
Required Parameters
- action (string): The target ConvertAPI MCP tool action to run. Must be one of the enabled actions:
convertapimcp_convert: Convert a file from one format to another.convertapimcp_get_conversion_parameters: Retrieve parameters supported by a specific conversion.convertapimcp_get_converters_by_tags: List converters filtered by tags.convertapimcp_request_upload_url: Request a pre-signed upload URL for source files.convertapimcp_search_converters: Search available converters.
Optional Parameters
- params (object): A key-value dictionary containing action-specific inputs (e.g.,
{'source_format': 'pdf', 'target_format': 'docx'}).
Practical Use Cases
- Format conversion workflows: Convert documents, images, or archives between formats as part of an automation pipeline.
- Converter discovery: Search converters and inspect required parameters before invoking a conversion.