What is File Merger MCP Server: Merge Automation & Cross-Format Integration?
This server enables seamless merging of multiple files into a single output, automating the process while ensuring cross-format compatibility. Designed for developers and system integrators, it prioritizes speed, security, and simplicity—ideal for workflows requiring bulk file consolidation without manual intervention.
How to Use File Merger MCP Server: Merge Automation & Cross-Format Integration?
Start by installing via npm and configuring allowed directories in your claude_desktop_config.json
:
{
"mcpServers": {
"file-merger": {
"command": "npx",
"args": ["-y", "@exoticknight/mcp-file-merger", "/path/to/allowed/dir"]
}
}
}
Use the merge_files
API endpoint to specify input files and output path. For example:
POST /merge_files
{
"inputPaths": ["/logs/error1.log", "/data/report.csv"],
"outputPath": "/combined/output.txt"
}