drio
Open app

File Merger MCP Server

Source

MCP server for merging multiple files into one

Catalog onlyCatalog onlySTDIO

Overview

File Merger MCP Server is a simple utility designed to combine multiple files into one efficiently and securely.

To use the File Merger MCP Server, you can integrate it with Claude Desktop by adding the configuration to your claude_desktop_config.json and then execute the merge command with the specified input and output paths.

  • Simple - Merge any number of files with a single command. - Fast - Efficiently combines files of any size. - Secure - Only accesses directories you allow. - Detailed - Reports file sizes and merge summary.
  1. Merging text files for data analysis.
  2. Combining multiple image files into a single document.
  3. Creating a consolidated report from various data sources.

Add to your AI client

Use these steps to connect File Merger MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-file-merger-exoticknight": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-file-merger-exoticknight": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-file-merger-exoticknight": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-file-merger-exoticknight": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-file-merger-exoticknight": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-file-merger-exoticknight": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-file-merger-exoticknight"
      ]
    }
  }
}

FAQ

Can I merge files of different types?

Yes! You can merge files of various types as long as they are supported by the system.

Is there a limit to the number of files I can merge?

No, you can merge any number of files in a single command.

How do I ensure the security of my files?

The server only accesses directories that you explicitly allow.