GoCertius MCP — certified evidence, dossiers, notifications and chats from EAD Trust's platform.
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.
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 availableevidence_create — Registers a NEW evidence record inside an evidence group. Requires: evidence_group_create → evidenceGroupId, case_file_create → caseFileId. Generateevidence_list — Lists all evidence records in a specific evidence group. Use to review uploaded documents before sealing the group, or to find a specific evidenceIdevidence_seal — Seals an evidence group and triggers qualified TSP timestamping. Requires: all INTERNAL evidence records in the group have already been uploaded toevidence_get — Retrieves a specific evidence record. Requires: evidence_create → evidenceId, evidence_group_create → evidenceGroupId, case_file_create → caseFileIdevidence_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, PHOTOevidence_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 aredossier_create — Creates a dossier to aggregate certified evidence groups into a single tamper-evident PDF. Requires: case_file_create → caseFileId. Evidence groupsdossier_update — Updates the metadata of an existing dossier (name, template fields, expiry). Requires: dossier_create → dossierId, caseFileId. Only available whiledossier_certify — Certifies a dossier, generating a tamper-evident PDF and locking all linked evidence. Requires: dossier_create → dossierId, dossier_evidence_linkdossier_list — Lists all dossiers in a case file with their status and metadata. Use to find an existing dossierId or monitor certification progress. Requiresdossier_get — Retrieves the full details of a specific dossier including status, linked evidence, and download URLs. Use to check current state or get certificateBeing a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
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.
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.
| Tool | What 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_create | Registers 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_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. Requires: caseFileId and evidenceGroupId. Returns paginated list with |
| evidence_seal | Seals 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_get | Retrieves a specific evidence record. Requires: evidence_create → evidenceId, evidence_group_create → evidenceGroupId, case_file_create → caseFileId. Returns status (COMPLETED |
| 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, VIDEO, or WEB_PLUGIN. Returns evidenceGroupId. One group can contain mult |
| 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 ready for sealing. Requires: caseFileId. |
| dossier_create | Creates 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_update | Updates the metadata of an existing dossier (name, template fields, expiry). Requires: dossier_create → dossierId, caseFileId. Only available while dossier is in DRAFT status. |
| dossier_certify | Certifies 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_list | Lists 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_get | Retrieves 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_list | Lists available dossier templates. No prerequisites. Returns template IDs and their translations per language. Use the returned id as dossierTemplateId in dossier_create. |
| dossier_preview | Returns an HTML preview URL of a dossier before certification. Requires: caseFileId and dossierId. |
{
"mcpServers": {
"gocertius": {
"args": [
"-y",
"@g-digital/mcp-gocertius"
],
"command": "npx"
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| MCP_AUTH_EMAIL | Configuration value read at startup. | Optional |
| MCP_AUTH_PASSWORD | Configuration value read at startup. | Optional |
| MCP_ALLOW_INSECURE_FILE_URL | Endpoint or connection string the server talks to. | Yes |
| MCP_API_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| MCP_AUTH_USER_KEY | Credential the server authenticates with. | Yes |
| MCP_HTTP_HOST | Endpoint or connection string the server talks to. | Optional |
| MCP_SVC_INTROSPECT_URL | Endpoint or connection string the server talks to. | Yes |
| MCP_SVC_CLIENT_ID | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.