Gocertius MCP Server

GoCertius MCP — certified evidence, dossiers, notifications and chats from EAD Trust's platform.

Remote serverstreamable-httpGo

What is the Gocertius MCP server?

Gocertius MCP server exists for a simple reason — assistants are far more useful when they can act on Gocertius directly instead of describing what you should do. GoCertius MCP — certified evidence, dossiers, notifications and chats from EAD Trust's platform.

What the assistant can call

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

  • Skill — ** .claude/skills/gocertius-suite-api/SKILL.md — open this repo in Claude Code and it is available
  • evidence_create — Registers a NEW evidence record inside an evidence group. Requires: evidence_group_create → evidenceGroupId, case_file_create → caseFileId. Generate
  • evidence_list — Lists all evidence records in a specific evidence group. Use to review uploaded documents before sealing the group, or to find a specific evidenceId
  • evidence_seal — Seals an evidence group and triggers qualified TSP timestamping. Requires: all INTERNAL evidence records in the group have already been uploaded to
  • evidence_get — Retrieves a specific evidence record. Requires: evidence_create → evidenceId, evidence_group_create → evidenceGroupId, case_file_create → caseFileId
  • evidence_group_create — Creates an evidence group inside a case file. Requires: case_file_create → caseFileId. Generate a UUID v4 for id. Set evidenceType to FILE, PHOTO
  • evidence_group_list — Lists all evidence groups in a case file with their current status (OPEN, CLOSING, CLOSED). Use to find an existing group or check which groups are
  • dossier_create — Creates a dossier to aggregate certified evidence groups into a single tamper-evident PDF. Requires: case_file_create → caseFileId. Evidence groups
  • dossier_update — Updates the metadata of an existing dossier (name, template fields, expiry). Requires: dossier_create → dossierId, caseFileId. Only available while
  • dossier_certify — Certifies a dossier, generating a tamper-evident PDF and locking all linked evidence. Requires: dossier_create → dossierId, dossier_evidence_link
  • dossier_list — Lists all dossiers in a case file with their status and metadata. Use to find an existing dossierId or monitor certification progress. Requires
  • dossier_get — Retrieves the full details of a specific dossier including status, linked evidence, and download URLs. Use to check current state or get certificate

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration and credentials

You will need 8 environment variables: MCP_AUTH_EMAIL, MCP_AUTH_PASSWORD, MCP_ALLOW_INSECURE_FILE_URL, MCP_API_BASE_URL, MCP_AUTH_USER_KEY, MCP_HTTP_HOST, MCP_SVC_INTROSPECT_URL, MCP_SVC_CLIENT_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

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. Gocertius's toolset — Skill, evidence_create, evidence_list and 11 more — is a fair guide to whether it matches your workflow. It is maintained by g-digital-by-Garrigues; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Gocertius.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gocertius mcp server does with a few real requests.

Available tools

ToolWhat it does
Skill** [.claude/skills/gocertius-suite-api/SKILL.md](.claude/skills/gocertius-suite-api/SKILL.md) — open this repo in Claude Code and it is available directly.
evidence_createRegisters a NEW evidence record inside an evidence group. Requires: evidence_group_create → evidenceGroupId, case_file_create → caseFileId. Generate a UUID v4 for id and compute the SHA-256 hex hash BEFORE calling. INTER
evidence_listLists all evidence records in a specific evidence group. Use to review uploaded documents before sealing the group, or to find a specific evidenceId. Requires: caseFileId and evidenceGroupId. Returns paginated list with
evidence_sealSeals an evidence group and triggers qualified TSP timestamping. Requires: all INTERNAL evidence records in the group have already been uploaded to their uploadFileUrl and verified with evidence_get/evidence_list. Requir
evidence_getRetrieves a specific evidence record. Requires: evidence_create → evidenceId, evidence_group_create → evidenceGroupId, case_file_create → caseFileId. Returns status (COMPLETED
evidence_group_createCreates an evidence group inside a case file. Requires: case_file_create → caseFileId. Generate a UUID v4 for id. Set evidenceType to FILE, PHOTO, VIDEO, or WEB_PLUGIN. Returns evidenceGroupId. One group can contain mult
evidence_group_listLists all evidence groups in a case file with their current status (OPEN, CLOSING, CLOSED). Use to find an existing group or check which groups are ready for sealing. Requires: caseFileId.
dossier_createCreates a dossier to aggregate certified evidence groups into a single tamper-evident PDF. Requires: case_file_create → caseFileId. Evidence groups must be in CLOSED status before linking. Generate a UUID v4 string for i
dossier_updateUpdates the metadata of an existing dossier (name, template fields, expiry). Requires: dossier_create → dossierId, caseFileId. Only available while dossier is in DRAFT status.
dossier_certifyCertifies a dossier, generating a tamper-evident PDF and locking all linked evidence. Requires: dossier_create → dossierId, dossier_evidence_link (evidence linked), case_file_create → caseFileId. ASYNC: transitions DRAFT
dossier_listLists all dossiers in a case file with their status and metadata. Use to find an existing dossierId or monitor certification progress. Requires: caseFileId. Returns paginated list with IDs, names, status, and creation da
dossier_getRetrieves the full details of a specific dossier including status, linked evidence, and download URLs. Use to check current state or get certificate download URLs after CERTIFIED. Requires: caseFileId and dossierId.
dossier_template_listLists available dossier templates. No prerequisites. Returns template IDs and their translations per language. Use the returned id as dossierTemplateId in dossier_create.
dossier_previewReturns an HTML preview URL of a dossier before certification. Requires: caseFileId and dossierId.

How to install the Gocertius MCP server

{
  "mcpServers": {
    "gocertius": {
      "args": [
        "-y",
        "@g-digital/mcp-gocertius"
      ],
      "command": "npx"
    }
  }
}

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

Configuration

VariableDescriptionRequired
MCP_AUTH_EMAILConfiguration value read at startup.Optional
MCP_AUTH_PASSWORDConfiguration value read at startup.Optional
MCP_ALLOW_INSECURE_FILE_URLEndpoint or connection string the server talks to.Yes
MCP_API_BASE_URLEndpoint or connection string the server talks to.Yes
MCP_AUTH_USER_KEYCredential the server authenticates with.Yes
MCP_HTTP_HOSTEndpoint or connection string the server talks to.Optional
MCP_SVC_INTROSPECT_URLEndpoint or connection string the server talks to.Yes
MCP_SVC_CLIENT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Gocertius to Skill.
  • Use Gocertius to evidence create.
  • Use Gocertius to evidence list.

Frequently asked questions

It connects Gocertius to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Skill, evidence_create, evidence_list, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gocertius directly.