spamtitan-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_TRANSPORT | No | Transport mode: stdio (default) or http | |
| SPAMTITAN_API_KEY | Yes | Your SpamTitan API key | |
| SPAMTITAN_BASE_URL | No | Your SpamTitan instance URL |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| spamtitan_navigateA | Discover available SpamTitan tools by domain. Returns tool names and descriptions for the selected domain. All tools are callable at any time — this is a help/discovery aid, not a prerequisite. |
| spamtitan_statusB | Show credentials status and available domains |
| spamtitan_get_queueA | List the email quarantine queue. Returns quarantined messages with sender, recipient, subject, and reason for quarantine. |
| spamtitan_get_messageA | Get a single quarantined message by ID. Returns sender, recipient, subject, quarantine reason, spam score, and status. Renders as an interactive card in MCP Apps hosts. |
| spamtitan_release_messageB | Release a quarantined message by ID, delivering it to the intended recipient. |
| spamtitan_delete_messageA | ⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently delete a quarantined message by ID. This action cannot be undone and will remove the message from quarantine storage. Confirm with the user before invoking. |
| spamtitan_manage_allowlistA | Add or remove sender allowlist entries in SpamTitan. Allowlisted senders always bypass spam filtering. |
| spamtitan_manage_blocklistA | ⚠ HIGH-IMPACT. Add or remove sender blocklist entries in SpamTitan. Modifies email delivery policy and affects deliverability for users. Blocklisted senders are always rejected or quarantined. Reversible by removing entries. Confirm with the user before invoking. |
| spamtitan_get_statsA | Get email flow statistics from SpamTitan including messages received, blocked, quarantined, and delivered. Supports filtering by time period. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| SpamTitan Quarantine Card | Interactive MCP Apps card rendering a quarantined email message |
TDQS
Scored across 9 tools
Each tool targets a distinct resource/action: status, discovery, queue listing, message retrieval, release, delete, allowlist management, blocklist management, and stats. The destructive and high-impact tools are clearly separated from safe read operations.
The spamtitan_ prefix creates a consistent namespace, and most tools follow verb_noun naming (get_queue, get_message, release_message, delete_message, manage_allowlist, get_stats). spamtitan_status and spamtitan_navigate are minor deviations from that pattern.
Nine tools is well-scoped for a SpamTitan server: quarantine lifecycle, list management, status, stats, and a discovery helper. Each tool earns its place without redundancy or bloat.
The quarantine workflow is fully covered with list, get, release, and delete, and allow/block list modifications plus stats are present. Minor gaps include no direct way to view current allowlist/blocklist entries and no search/filter for the queue, but these are workable.