Intelligent file type detection and conversion
## File Convert MCP Server: Universal File Conversion The **File Convert MCP Server** provides comprehensive file format conversion capabilities directly within Google Antigravity, enabling AI assistants to convert documents, images, audio, and video between formats programmatically. This integration brings universal file conversion to your development workflow. ### Why File Convert MCP? - **Multi-Format**: Convert between hundreds of file formats across all media types - **Batch Processing**: Convert multiple files simultaneously with consistent settings - **Quality Control**: Fine-tune conversion parameters for optimal output quality - **Metadata Preservation**: Maintain metadata during conversion when possible - **Cloud Processing**: Handle large files with cloud-based conversion engines ### Key Features #### 1. Document Conversion ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this Word document to PDF with high quality settings" }], tools=[{ "name": "fileconvert_document", "description": "Convert documents" }] ) ``` #### 2. Image Conversion ```python # Convert images response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert these PNG images to WebP format with 80% quality" }], tools=[{"name": "fileconvert_image", "description": "Convert images"}] ) ``` #### 3. Audio Conversion ```python # Convert audio files response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this WAV recording to MP3 at 320kbps" }], tools=[{"name": "fileconvert_audio", "description": "Convert audio"}] ) ``` #### 4. Video Conversion ```python # Convert video files response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Convert this video to MP4 H.264 optimized for web streaming" }], tools=[{"name": "fileconvert_video", "description": "Convert video"}] ) ``` ### Configuration ```json { "mcpServers": { "file-convert": { "command": "npx", "args": ["-y", "@anthropic/mcp-file-convert"], "env": { "CONVERSION_QUALITY": "high" } } } } ``` ### Use Cases **Asset Pipeline**: Automate media asset conversion for web and mobile applications. **Document Processing**: Convert documents between formats for compatibility. **Media Optimization**: Optimize images and videos for different platforms and devices. **Archive Migration**: Convert legacy file formats to modern standards. The File Convert MCP Server brings universal file conversion directly into your development workflow, enabling seamless format transformations.
{
"mcpServers": {
"file-convert": {
"mcpServers": {
"file-convert-guru": {
"args": [
"-y",
"file-convert-mcp"
],
"command": "npx"
}
}
}
}
}