final-notice
Server Details
Free demand-letter PDF generator for unpaid invoices, 80+ jurisdictions, 29 languages.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: listing jurisdictions, previewing letter content, and generating the final PDF. No overlap or confusion.
All tools follow a consistent verb_noun pattern (list_jurisdictions, preview_demand_letter, generate_demand_letter), making the naming predictable and clear.
With 3 tools, the server is well-scoped for its purpose—providing just enough functionality to complete the demand letter workflow without unnecessary complexity.
The tools cover the essential pipeline: list jurisdictions, preview, generate. Minor gaps like address validation or customization are not critical, but the core flow is complete.
Available Tools
3 toolsgenerate_demand_letterAInspect
Generate the finished demand-letter PDF (formal letter + matching envelope), localized and legally formatted for the jurisdiction. Returns the PDF as a base64 resource. Free, no registration.
| Name | Required | Description | Default |
|---|---|---|---|
| bank | No | Payment/bank details keyed by field (e.g. {bankName, iban, accountNumber}). Optional. | |
| tone | No | Escalation level. Default: final. | |
| amount | Yes | Amount owed, as a number (no separators). Required, > 0. | |
| attested | No | Confirms authorization to send under the sender name. Required when senderType is business/firm. | |
| currency | No | ISO 4217 currency (optional; defaults to the jurisdiction's). | |
| language | No | Letter language code (e.g. en, es, fr, de, pt, ar, zh, ja). Must be offered for the jurisdiction; defaults to en. | |
| senderRef | No | Creditor's own reference number (optional). | |
| debtorName | Yes | Debtor name. Required. | |
| senderName | Yes | Creditor name (person or business). Required. | |
| senderType | No | Creditor type. Business/firm requires attested=true. | |
| signerName | No | Name of the person signing (optional; defaults to senderName). | |
| description | No | What the debt is for (optional). | |
| senderTitle | No | Signer's job title (optional). | |
| deadlineDays | No | Days from issue to pay (optional; default 14). | |
| jurisdiction | No | ISO 3166-1 alpha-2 country code of the debtor (e.g. US, GB, DE, BR, AE). Use list_jurisdictions for the full set; XX = generic/international. | |
| originalDate | No | ISO date the debt was incurred/invoiced (optional). | |
| debtorAddress | Yes | Debtor postal address, multi-line. Required. | |
| invoiceNumber | No | Invoice/account number (optional). | |
| senderAddress | Yes | Creditor postal address, multi-line (\n separated). Required. | |
| senderContact | No | Creditor email/phone (optional). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must cover behavioral traits. It discloses key aspects: generates a PDF, localized formatting, returns base64 resource, and free access. However, it omits details like error handling, processing time, or parameter validation behavior, which is a gap for a complex tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—two sentences—and immediately front-loads the core action ('Generate the finished demand-letter PDF'). Every word adds value; no redundancy. Ideal for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite good schema descriptions, the tool has 20 parameters, nested objects, and conditional logic (e.g., attested required for business senderType). The description does not synthesize this complexity or provide a high-level workflow. For such a feature-rich tool, the description is too brief to be fully contextually complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All 20 parameters are described in the input schema (100% coverage), so the baseline is 3. The description itself adds no additional parameter-level meaning beyond what the schema already provides. It does not highlight dependencies or conditional requirements.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool generates a finished demand-letter PDF with envelope, localized and legally formatted. It distinguishes itself from the sibling 'preview_demand_letter' by emphasizing 'finished' and the return of a base64 PDF, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly advise when to use this tool versus alternatives like preview. It only mentions the output format and cost, leaving usage context implied but not clearly defined. No guidance on prerequisites or when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_jurisdictionsAInspect
List every supported country/jurisdiction (code, name, currency, default language) plus the available languages and tones. Call this first to pick a valid jurisdiction + language.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, so description carries burden. Discloses returned data (code, name, currency, default language, languages, tones). Implies read-only but does not explicitly state non-destructive nature or safety profile.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff. First states functionality, second provides use guidance. Efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless listing tool with no output schema, the description fully covers what to expect (data fields) and when to use (initial call). Complete given simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has zero parameters (100% coverage baseline 4). Description enriches meaning by detailing output fields and the tool's purpose, exceeding baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear and specific: lists supported jurisdictions with fields (code, name, currency, default language) plus languages and tones. Distinguishes from siblings generate_demand_letter and preview_demand_letter, which are about generating letters, not listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Call this first to pick a valid jurisdiction + language', providing clear when-to-use context. No explicit when-not-to, but the guidance is direct and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_demand_letterAInspect
Render the demand letter's text content (title, subject, body paragraphs, amount line, legal reference, closing) as structured JSON, without producing a PDF. Use to review or refine wording before generating.
| Name | Required | Description | Default |
|---|---|---|---|
| bank | No | Payment/bank details keyed by field (e.g. {bankName, iban, accountNumber}). Optional. | |
| tone | No | Escalation level. Default: final. | |
| amount | Yes | Amount owed, as a number (no separators). Required, > 0. | |
| attested | No | Confirms authorization to send under the sender name. Required when senderType is business/firm. | |
| currency | No | ISO 4217 currency (optional; defaults to the jurisdiction's). | |
| language | No | Letter language code (e.g. en, es, fr, de, pt, ar, zh, ja). Must be offered for the jurisdiction; defaults to en. | |
| senderRef | No | Creditor's own reference number (optional). | |
| debtorName | Yes | Debtor name. Required. | |
| senderName | Yes | Creditor name (person or business). Required. | |
| senderType | No | Creditor type. Business/firm requires attested=true. | |
| signerName | No | Name of the person signing (optional; defaults to senderName). | |
| description | No | What the debt is for (optional). | |
| senderTitle | No | Signer's job title (optional). | |
| deadlineDays | No | Days from issue to pay (optional; default 14). | |
| jurisdiction | No | ISO 3166-1 alpha-2 country code of the debtor (e.g. US, GB, DE, BR, AE). Use list_jurisdictions for the full set; XX = generic/international. | |
| originalDate | No | ISO date the debt was incurred/invoiced (optional). | |
| debtorAddress | Yes | Debtor postal address, multi-line. Required. | |
| invoiceNumber | No | Invoice/account number (optional). | |
| senderAddress | Yes | Creditor postal address, multi-line (\n separated). Required. | |
| senderContact | No | Creditor email/phone (optional). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. The description correctly states that it does not produce a PDF and returns structured JSON, which is non-destructive. However, it does not describe the exact structure of the returned JSON (e.g., keys like title, body, etc.), nor does it mention any authorization requirements or side effects. The description is adequate but lacks some behavioral details beyond the obvious.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences that clearly state the tool's function and usage. It is front-loaded with the main action and purpose, and every word adds value. No fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 20 parameters (5 required), no output schema, and a nested object. The description mentions that the output is structured JSON but does not elaborate on its structure or any limitations. Given the complexity (many parameters, no output schema), the description is somewhat incomplete as it doesn't describe the return format or any validation rules beyond the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with descriptions for all 20 parameters, so the schema itself is informative. The description does not add any additional meaning beyond the schema; it just restates the overall purpose. According to the guidelines, baseline is 3 when schema coverage is high, and the description adds no extra parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool renders demand letter text content as structured JSON without producing a PDF. It specifies the exact resource (demand letter text) and action (render as structured JSON), and distinguishes it from the sibling tool 'generate_demand_letter' which likely produces a PDF.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: 'Use to review or refine wording before generating.' This implies the alternative is generating the final PDF (via 'generate_demand_letter'), though it does not explicitly state when not to use this tool. The mention of 'before generating' gives good usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!