streamable-httpMITupdated 2mo ago
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 100+ jurisdictions and 33 languages (including Arabic/RTL, CJK, Indic, Thai, Cyrillic, and Greek).
final notice 能做什么?
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 100+ jurisdictions and 33 languages (including Arabic/RTL, CJK, Indic, Thai, Cyrillic, and Greek).
- Website: https://finalnotice.io
- Hosted MCP endpoint:
https://finalnotice.io/mcp(Streamable HTTP, JSON-RPC 2.0) - No auth, no API key, free.
The rendering engine (fonts, layout, jurisdiction rules) runs on the hosted service. This package is a thin stdio MCP server that forwards the three tools to the free public API, so you can run it locally or point any MCP client at the hosted endpoint.
Use it
A) Hosted endpoint (nothing to install)
claude mcp add --transport http final-notice https://finalnotice.io/mcp
{
"mcpServers": {
"final-notice": { "type": "http", "url": "https://finalnotice.io/mcp" }
}
}
B) Run the stdio server locally (npx)
{
"mcpServers": {
"final-notice": { "command": "npx", "args": ["-y", "finalnotice-mcp"] }
}
}
C) Docker
docker build -t finalnotice-mcp .
docker run -i --rm finalnotice-mcp
The stdio server calls https://finalnotice.io by default; override with the
FINALNOTICE_API_BASE environment variable.
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",
"debtorType": "individual",
"amount": 2450,
"currency": "GBP",
"invoiceNumber": "INV-1042",
"deadlineDays": 14
}
Required fields: senderName, senderAddress, debtorName, debtorAddress, amount (> 0).
Business/firm senders must set attested: true. Set debtorType: "individual" to apply
consumer-protection rules where they exist (e.g. the UK Pre-Action Protocol for Debt
Claims 30-day period, or the Dutch WIK fourteen-day wording).
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 — see LICENSE.
安装
把 final notice 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http final-notice https://finalnotice.io/mcpcodex mcp add final-notice --url https://finalnotice.io/mcp{
"mcpServers": {
"final-notice": {
"url": "https://finalnotice.io/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"final-notice": {
"type": "http",
"url": "https://finalnotice.io/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"final-notice": {
"url": "https://finalnotice.io/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"final-notice": {
"serverUrl": "https://finalnotice.io/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
3 个工具
final notice 向已连接的智能体提供 3 个工具。
- 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.
评分
67 / 100
良好
- 文档22/25
- 维护16/25
- 可信度13/20
- 能力4/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 57 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.0.0最新 | 2026年6月19日 |