Groupdocs MCP Server

MCP server for GroupDocs.Parser — extract text, images, metadata, tables, barcodes via AI.

Local serverstdio

What is the Groupdocs MCP server?

Most file and storage access work still happens through a UI a human drives. Groupdocs MCP server moves it into the conversation instead. MCP server for GroupDocs.Parser — extract text, images, metadata, tables, barcodes via AI.

The short version

MCP server that exposes GroupDocs.Parser as AI-callable tools for Claude, Cursor, GitHub Copilot, and other MCP agents.

Getting it running

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.

The tools it exposes

The server publishes 6 tools. What each one is for:

  • ExtractText — Extracts plain text from a document (whole document or a single page). Truncates very large outputs
  • ExtractImages — Extracts all embedded images and saves them to storage as _image. files
  • ExtractMetadata — Extracts metadata (author, title, dates, custom properties, EXIF, XMP, IPTC) and returns it as JSON
  • ExtractTables — Extracts tables from a document as Markdown (default — renders in chat) or structured JSON
  • ExtractBarcodes — Detects all barcodes / QR codes and returns their decoded values, types, and positions as JSON
  • GetDocumentInfo — Returns the file type, page count, and size of a document as JSON (without modifying it)

What it needs from you

Configuration is passed through the environment: GROUPDOCS_LICENSE_PATH, GROUPDOCS_MCP_STORAGE_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.

Things to watch

  • 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.

How it compares

Plenty of file and storage access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Groupdocs's toolset — ExtractText, ExtractImages, ExtractMetadata and 3 more — is a fair guide to whether it matches your workflow. It is maintained by groupdocs-parser; 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
ExtractTextExtracts plain text from a document (whole document or a single page). Truncates very large outputs.
ExtractImagesExtracts all embedded images and saves them to storage as <basename>_image<N>.<ext> files
ExtractMetadataExtracts metadata (author, title, dates, custom properties, EXIF, XMP, IPTC) and returns it as JSON
ExtractTablesExtracts tables from a document as Markdown (default — renders in chat) or structured JSON
ExtractBarcodesDetects all barcodes / QR codes and returns their decoded values, types, and positions as JSON
GetDocumentInfoReturns the file type, page count, and size of a document as JSON (without modifying it)

How to install the Groupdocs MCP server

{
  "mcpServers": {
    "groupdocs-parser": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "-v", "/path/to/documents:/data", "ghcr.io/groupdocs-parser/parser-net-mcp:latest"]
    }
  }
}

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

Configuration

VariableDescriptionRequired
GROUPDOCS_LICENSE_PATHFilesystem location the server is allowed to use.Optional
GROUPDOCS_MCP_STORAGE_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 ExtractText.
  • Use Groupdocs to ExtractImages.
  • Use Groupdocs to ExtractMetadata.

Frequently asked questions

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