Groupdocs MCP Server

MCP server for GroupDocs.Markdown — convert documents to Markdown via AI agents.

Local serverstdio

What is the Groupdocs MCP server?

Connect Groupdocs to Claude, Cursor or any other MCP client and it stops being a tab you switch to. MCP server for GroupDocs.Markdown — convert documents to Markdown via AI agents. The groupdocs mcp server is what makes that connection.

What the server does

MCP server that exposes GroupDocs.Markdown as AI-callable tools for Claude, Cursor, GitHub Copilot, and other MCP agents — convert documents to clean, structured Markdown.

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • ConvertToMarkdown — Converts a document (PDF, DOCX, XLSX, EPUB, MOBI, …) to clean, structured Markdown and saves the .md to storage. Images embed as base64 by default
  • GetDocumentInfo — Returns file format, page count, title, author, and encryption flag as JSON, without converting

Credentials and setup notes

Configuration is passed through the environment: GROUPDOCS_MCP_STORAGE_PATH, GROUPDOCS_LICENSE_PATH, GROUPDOCS_MCP_OUTPUT_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Among the file and storage access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Groupdocs's toolset — ConvertToMarkdown, GetDocumentInfo — is a fair guide to whether it matches your workflow. It is maintained by groupdocs-markdown; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
ConvertToMarkdownConverts a document (PDF, DOCX, XLSX, EPUB, MOBI, …) to clean, structured Markdown and saves the .md to storage. Images embed as base64 by default.
GetDocumentInfoReturns file format, page count, title, author, and encryption flag as JSON, without converting.

How to install the Groupdocs MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GROUPDOCS_MCP_STORAGE_PATHFilesystem location the server is allowed to use.Optional
GROUPDOCS_LICENSE_PATHFilesystem location the server is allowed to use.Optional
GROUPDOCS_MCP_OUTPUT_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Groupdocs to ConvertToMarkdown.
  • Use Groupdocs to GetDocumentInfo.

Frequently asked questions

It connects Groupdocs to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (ConvertToMarkdown, GetDocumentInfo) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Groupdocs directly.