# Conversion Tools MCP

> Connects to Conversion Tools via Scalekit MCP to authenticate, discover file converters, request upload URLs, and convert files.

**URL:** https://caywork.com/learn/docs/node/conversiontoolsmcp-node

## Content

The **Conversion Tools MCP Node** integrates securely with the Conversion Tools API through the Scalekit MCP gateway. It enables your AI agent to manage authentication, discover and query file converters, request upload URLs, and convert files.

## Parameters

### Required Parameters
* **action** (string): The target Conversion Tools MCP tool action to run. Must be one of the enabled actions:
  * `conversiontoolsmcp_auth_login`: Authenticate with the Conversion Tools service.
  * `conversiontoolsmcp_auth_logout`: End the Conversion Tools session.
  * `conversiontoolsmcp_auth_status`: Check the current authentication status.
  * `conversiontoolsmcp_convert_file`: Convert a file using a configured converter.
  * `conversiontoolsmcp_find_converter`: Search for a suitable file converter.
  * `conversiontoolsmcp_get_converter_info`: Retrieve details for a specific converter.
  * `conversiontoolsmcp_list_converters`: List available file converters.
  * `conversiontoolsmcp_request_upload_url`: Request a signed URL for uploading a file.

### Optional Parameters
* **params** (object): A key-value dictionary containing action-specific inputs (e.g., `{'source_format': 'docx', 'target_format': 'pdf'}`).

## Practical Use Cases
1. **Document conversion workflows**: Locate the right converter, upload a file, and convert between formats such as DOCX, PDF, or images.
2. **Batch file processing**: List converters and request upload URLs to automate multi-step conversion pipelines.