Skip to main content
ClaudeWave
groupdocs-merger avatar
groupdocs-merger

GroupDocs.Merger.Mcp

View on GitHub

GroupDocs.Merger for .NET MCP server — merge and split PDF, Word, Excel, PowerPoint, and image documents via AI agents.

MCP ServersOfficial Registry0 stars0 forksC#MITUpdated today
ClaudeWave Trust Score
79/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# GroupDocs.Merger MCP Server

MCP server that exposes [GroupDocs.Merger](https://products.groupdocs.com/merger) as AI-callable tools
for Claude, Cursor, GitHub Copilot, and other MCP agents.

## Installation

Requires [.NET 10 SDK](https://dotnet.microsoft.com/download/dotnet/10.0).

**Run directly with `dnx` (recommended — no install step):**

```bash
dnx GroupDocs.Merger.Mcp --yes
```

Pulls the latest stable release on every invocation. To pin to a specific
version (recommended for shared configs and CI), append `@<version>`:

```bash
dnx GroupDocs.Merger.Mcp@26.7.0 --yes
```

**Or install as a global dotnet tool:**

```bash
dotnet tool install -g GroupDocs.Merger.Mcp
groupdocs-merger-mcp
```

**Or run via Docker:**

```bash
docker run --rm -i \
  -v $(pwd)/documents:/data \
  ghcr.io/groupdocs-merger/merger-net-mcp:latest
```

## Native prerequisites

The underlying GroupDocs engine uses `System.Drawing` (GDI+) for some
operations. When you run the server **natively** (via `dnx` or the global
dotnet tool) on Linux or macOS, install the native `libgdiplus` library first:

| Platform | Setup |
|---|---|
| Windows | Nothing — GDI+ is built into the OS. |
| Linux | `sudo apt-get install -y libgdiplus libfontconfig1` |
| macOS | `brew install mono-libgdiplus` |
| Docker | Nothing — the image already bundles `libgdiplus`. |

Skipping this on Linux/macOS surfaces as `DllNotFoundException: libgdiplus` in
the tool response. The simplest zero-setup option on Linux/macOS is the
**Docker image**.

## Available MCP Tools

| Tool | Description |
|---|---|
| `Merge` | Merges 2–4 documents into a single file and saves the result to storage |
| `Split` | Splits a document by extracting specific pages, saving each as an individual file |
| `GetDocumentInfo` | Returns the file type, page count, size, and per-page dimensions of a document as JSON (without modifying it) |

All tools support PDF, DOCX, XLSX, PPTX, and 30+ more document, image, and archive formats.

## Example prompts for AI agents

Copy any of these into Claude Desktop, Cursor, or GitHub Copilot Chat after the
server is connected.

1. **Merge documents**: *"Merge intro.docx and appendix.docx into one file."*
2. **Combine PDFs**: *"Combine report-q1.pdf, report-q2.pdf, and report-q3.pdf into a single PDF."*
3. **Split out pages**: *"Split pages 3, 7, and 9 out of contract.pdf into separate files."*
4. **Inspect before merging**: *"How many pages does presentation.pptx have?"*
5. **Extract a page range**: *"Pull pages 1 through 5 of manual.docx into their own documents."*

## Configuration

| Variable | Description | Default |
|---|---|---|
| `GROUPDOCS_MCP_STORAGE_PATH` | Base folder for input and output files | current directory |
| `GROUPDOCS_MCP_OUTPUT_PATH` | *(Optional)* separate folder for output files | `GROUPDOCS_MCP_STORAGE_PATH` |
| `GROUPDOCS_LICENSE_PATH` | Path to GroupDocs license file. In evaluation mode, merged / split output may include watermarks | (evaluation mode) |

## Usage with Claude Desktop

```json
{
  "mcpServers": {
    "groupdocs-merger": {
      "type": "stdio",
      "command": "dnx",
      "args": ["GroupDocs.Merger.Mcp", "--yes"],
      "env": {
        "GROUPDOCS_MCP_STORAGE_PATH": "/path/to/documents"
      }
    }
  }
}
```

> To pin: replace `"GroupDocs.Merger.Mcp"` with `"GroupDocs.Merger.Mcp@26.7.0"` in `args`.

## Usage with VS Code / GitHub Copilot

NuGet.org generates a ready-to-use `mcp.json` snippet on the [package page](https://www.nuget.org/packages/GroupDocs.Merger.Mcp).
Copy it directly into your `.vscode/mcp.json`.

Alternatively, add manually to `.vscode/mcp.json`:

```json
{
  "inputs": [
    {
      "type": "promptString",
      "id": "storage_path",
      "description": "Base folder for input and output files.",
      "password": false
    }
  ],
  "servers": {
    "groupdocs-merger": {
      "type": "stdio",
      "command": "dnx",
      "args": ["GroupDocs.Merger.Mcp", "--yes"],
      "env": {
        "GROUPDOCS_MCP_STORAGE_PATH": "${input:storage_path}"
      }
    }
  }
}
```

## Usage with Docker Compose

```bash
cd docker
docker compose up
```

Edit `docker/docker-compose.yml` to point volumes at your local documents folder.

## Documentation & guides

Step-by-step deployment guides and a published-package integration test suite
live in the companion repo
[**GroupDocs.Merger.Mcp.Tests**](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests):

- [Install from NuGet](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/01-install-from-nuget.md)
- [Run via Docker](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/02-run-via-docker.md)
- [Verify on the MCP registry](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/03-verify-mcp-registry.md)
- [Use with Claude Desktop](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/04-use-with-claude-desktop.md)
- [Use with VS Code / GitHub Copilot](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/05-use-with-vscode-copilot.md)
- [Run the integration tests](https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp.Tests/blob/master/how-to/06-run-integration-tests.md)

## License

MIT — see [LICENSE](LICENSE)

<!-- mcp-name: io.github.groupdocs-merger/groupdocs-merger-mcp -->

What people ask about GroupDocs.Merger.Mcp

What is groupdocs-merger/GroupDocs.Merger.Mcp?

+

groupdocs-merger/GroupDocs.Merger.Mcp is mcp servers for the Claude AI ecosystem. GroupDocs.Merger for .NET MCP server — merge and split PDF, Word, Excel, PowerPoint, and image documents via AI agents. It has 0 GitHub stars and was last updated today.

How do I install GroupDocs.Merger.Mcp?

+

You can install GroupDocs.Merger.Mcp by cloning the repository (https://github.com/groupdocs-merger/GroupDocs.Merger.Mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is groupdocs-merger/GroupDocs.Merger.Mcp safe to use?

+

Our security agent has analyzed groupdocs-merger/GroupDocs.Merger.Mcp and assigned a Trust Score of 79/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains groupdocs-merger/GroupDocs.Merger.Mcp?

+

groupdocs-merger/GroupDocs.Merger.Mcp is maintained by groupdocs-merger. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to GroupDocs.Merger.Mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy GroupDocs.Merger.Mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: groupdocs-merger/GroupDocs.Merger.Mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/groupdocs-merger-groupdocs-merger-mcp)](https://claudewave.com/repo/groupdocs-merger-groupdocs-merger-mcp)
<a href="https://claudewave.com/repo/groupdocs-merger-groupdocs-merger-mcp"><img src="https://claudewave.com/api/badge/groupdocs-merger-groupdocs-merger-mcp" alt="Featured on ClaudeWave: groupdocs-merger/GroupDocs.Merger.Mcp" width="320" height="64" /></a>

More MCP Servers

GroupDocs.Merger.Mcp alternatives