Groupdocs MCP Server

MCP server for GroupDocs.Signature — sign, search and verify document signatures via AI agents.

Local serverstdio

What is the Groupdocs MCP server?

Groupdocs MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for GroupDocs.Signature — sign, search and verify document signatures via AI agents.

What you get

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

What the assistant can call

Once Groupdocs is connected, these are the calls the assistant has available:

  • Sign — Sign a document with a text, QR code, barcode, or digital certificate signature; saves the signed file as _signed.
  • Verify — Verify signatures in a document (text, QR code, barcode, digital, or all) and return a validity report
  • SearchTextSignatures — Find embedded text signatures (stamps, labels, native text annotations) with optional substring filter
  • SearchBarcodes — Find barcode signatures (Code39, Code128, EAN, etc.) with optional decoded-text filter and optional inline image
  • SearchQrCodes — Find QR code signatures with optional decoded-text filter and optional inline image
  • SearchDigitalSignatures — Find digital certificate signatures and return signer, issuer, serial number, validity status
  • SearchImageSignatures — Find embedded image signatures (logos, stamp images, picture overlays) and return them as base64 PNGs
  • GetDocumentInfo — Return file type, page count, size, and per-page dimensions as JSON (no modification)

Configuration and credentials

You will need 3 environment variables: GROUPDOCS_MCP_STORAGE_PATH, GROUPDOCS_LICENSE_PATH, GROUPDOCS_MCP_OUTPUT_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

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.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Groupdocs's toolset — Sign, Verify, SearchTextSignatures and 5 more — is a fair guide to whether it matches your workflow. It is maintained by groupdocs-signature; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Groupdocs's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the groupdocs mcp server does with a few real requests.

Available tools

ToolWhat it does
SignSign a document with a text, QR code, barcode, or digital certificate signature; saves the signed file as <name>_signed.<ext>
VerifyVerify signatures in a document (text, QR code, barcode, digital, or all) and return a validity report
SearchTextSignaturesFind embedded text signatures (stamps, labels, native text annotations) with optional substring filter
SearchBarcodesFind barcode signatures (Code39, Code128, EAN, etc.) with optional decoded-text filter and optional inline image
SearchQrCodesFind QR code signatures with optional decoded-text filter and optional inline image
SearchDigitalSignaturesFind digital certificate signatures and return signer, issuer, serial number, validity status
SearchImageSignaturesFind embedded image signatures (logos, stamp images, picture overlays) and return them as base64 PNGs
GetDocumentInfoReturn file type, page count, size, and per-page dimensions as JSON (no modification)

How to install the Groupdocs MCP server

{
  "mcpServers": {
    "groupdocs-signature": {
      "type": "stdio",
      "command": "dnx",
      "args": ["GroupDocs.Signature.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 Sign.
  • Use Groupdocs to Verify.
  • Use Groupdocs to SearchTextSignatures.

Frequently asked questions

It connects Groupdocs to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (Sign, Verify, SearchTextSignatures, 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.