Final Notice — MCP server
Free, no-registration Model Context Protocol server that generates professional debt-collection demand letters: a print-ready PDF (formal letter + matching envelope), localized and legally formatted for 80+ jurisdictions and 29 languages (including Arabic/RTL, CJK, Indic, Thai, Cyrillic, and Greek).
- Website: https://finalnotice.io
- MCP endpoint:
https://finalnotice.io/mcp - Transport: Streamable HTTP (JSON-RPC 2.0) — no auth, no API key, free.
This repository is the registry manifest for a remote, hosted MCP server; there is nothing to install or run locally.
Connect
Most MCP clients accept a remote HTTP server. For example, with Claude Code:
claude mcp add --transport http final-notice https://finalnotice.io/mcp
Or add to a client config that supports remote servers:
{
"mcpServers": {
"final-notice": {
"type": "http",
"url": "https://finalnotice.io/mcp"
}
}
}
Tools
| Tool | Description |
|---|---|
list_jurisdictions | Supported countries, currencies, languages, and tones. Call first to pick a valid jurisdiction + language. |
preview_demand_letter | Render the letter's text (title, subject, body, amount, legal reference, closing) as structured JSON — no PDF — to review wording. |
generate_demand_letter | Generate the finished PDF (letter + envelope) and return it as a base64 resource. |
Minimal example (generate_demand_letter arguments)
{
"jurisdiction": "GB",
"language": "en",
"tone": "final",
"senderName": "Acme Ltd",
"senderType": "business",
"attested": true,
"senderAddress": "1 High St\nLondon",
"debtorName": "J. Smith",
"debtorAddress": "2 Park Rd\nLeeds",
"amount": 2450,
"currency": "GBP",
"invoiceNumber": "INV-1042",
"deadlineDays": 14
}
Required fields: senderName, senderAddress, debtorName, debtorAddress, amount (> 0).
Business/firm senders must set attested: true.
Notes
- A REST API mirrors the MCP tools:
GET /api/meta,POST /api/preview,POST /api/generate. - This is not legal advice; letters are factual, non-threatening templates.
- The service is free; an optional donation link is at https://finalnotice.io/donate.
License: MIT (this manifest repository).