mcp-mail-notifier
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| QQ_EMAIL_USER | No | Your QQ email address (e.g., your-email@qq.com). If not set, defaults to placeholder in code. | |
| QQ_EMAIL_AUTH_CODE | No | Your QQ email authorization code. If not set, defaults to placeholder in code. |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| send_notificationC | 发送任务完成通知邮件到指定邮箱 |
| set_task_start_timeB | 设置任务开始时间,用于后续计算任务耗时 |
| format_durationC | 格式化时间间隔显示 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools have clearly distinct purposes: sending an email notification, setting a task start time, and formatting a duration. No two tools overlap in action or target resource.
All tool names use a consistent snake_case verb_noun pattern: send_notification, set_task_start_time, format_duration. The convention is predictable and easy to parse.
Three tools are a reasonable, lightweight surface for a mail notifier. Two are timing helpers rather than direct mail operations, so the set is slightly narrow but not inappropriate.
The core send_notification tool is present, and duration helpers exist, but there is no tool to retrieve or clear the stored start time or to calculate/embed elapsed duration into the notification. Other notification scenarios are also absent.