Developers
Notificado, from your AI assistant
An MCP server with the same permissions as your account. Your assistant registers cases, uploads documents, prepares the notification and reads the evidence; you confirm the send.

Setup
Connect it in 30 seconds
Replace <token> with the one you issued under Account → API. Never paste it into a chat or a shared file.
claude mcp add --transport http notificado https://www.notificado.co/mcp --header "Authorization: Bearer <token>"{
"mcpServers": {
"notificado": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.notificado.co/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer <token>"
}
}
}
}Claude Desktop reaches remote servers through mcp-remote, which needs Node.js. Add this to claude_desktop_config.json.
{
"mcpServers": {
"notificado": {
"url": "https://www.notificado.co/mcp",
"headers": {
"Authorization": "Bearer <token>"
}
}
}
}In Cursor, add it to ~/.cursor/mcp.json or to the project's .cursor/mcp.json.
What you can automate
Each tool belongs to one scope, and a token sees only the tools of the scopes it was issued with.
cases:readRead cases
List the firm's cases (procesos) and their parties.
cases:writeRegister cases and upload documents
Create and edit cases and parties; upload PDF, PNG or JPEG.
notifications:readFollow notifications
Each recipient's status, their evidence timeline, the credit balance and constancia verification.
notifications:writePrepare notifications
Create drafts, attach documents and request the send, which you confirm.
evidence:readDownload evidence
The signed constancia and the evidence package. Every download is logged.
deadlines:readRead deadlines
Computed terms per recipient, on the Colombian court calendar.
Authentication
Issue a token under Account → API. It is shown once, and we store only its hash.
- Pick its scopes and lifetime: 30, 90 or 365 days, or no expiry.
- The token acts for the person who issued it, with their current role in the firm. If the role changes, the token follows on the next call.
- Revoke it at any time from the same page.
- Limits: 120 reads and 20 writes a minute per person.
Confirm before send
An assistant prepares everything, but never sends on its own
The assistant prepares
It registers the case, uploads the documents and creates the draft. Nothing is sent and no credit is used.
You add the recipients
Adding a recipient is your sworn statement about where the address came from (art. 8, para. 2). Only you make it, in the panel.
The assistant requests the send
It gets a confirmation link, valid for 24 hours, and hands it to you.
You confirm
In the panel, signed in. Only then is the message frozen, timestamped and sent.
Recipes
Step-by-step guides for your assistant
Written for agents, indexed by goal. Your assistant reads them with the docs tool; they are also published in the documentation.
- Send an art. 8 notification (Ley 2213)Serve a party with an auto admisorio or another court order by email, with proof of delivery.
docs://recipes/send-an-article-8-notification - Check a notification's statusFind out whether it arrived, was delivered, opened or downloaded.
docs://recipes/check-a-notification-status - Download evidence for an expert witnessGet the signed constancia and the evidence package for the case file or a perito.
docs://recipes/download-evidence-for-a-perito - Verify a constanciaCheck whether a PDF or its QR code is authentic, unaltered and current.
docs://recipes/verify-a-constancia - Find a case by radicadoFind a case from its 23-digit radicado (court case number).
docs://recipes/find-a-case-by-radicado - Top up creditsWhat to do when the firm runs out of credits.
docs://recipes/top-up-credits - What counts as deliveredDelivery versus indicio, before saying someone received or read a notification.
docs://recipes/what-counts-as-delivered
The full documentation
Tools, scopes, errors and the API reference, generated from the same code that answers the calls.