Health Reminder MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REMINDER_MESSAGE | No | The reminder message content | 该起身活动一下了!久坐对健康不利,建议站起来走动走动。 |
| REMINDER_INTERVAL | No | The reminder interval in minutes | 30 |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| start_reminderA | 启动健康提醒定时器,每隔指定时间弹出系统通知 |
| stop_reminderB | 停止健康提醒定时器 |
| get_statusB | 获取当前健康提醒的状态和配置 |
| send_immediate_reminderB | 立即发送一次健康提醒通知(不影响定时器) |
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 4 tools
Each tool has a clearly distinct purpose with no overlap: get_status retrieves configuration, send_immediate_reminder triggers a one-time notification, start_reminder initiates a recurring timer, and stop_reminder terminates it. The actions (get, send, start, stop) target different aspects of the reminder system, making misselection unlikely.
All tools follow a consistent verb_noun pattern (e.g., get_status, send_immediate_reminder, start_reminder, stop_reminder) using snake_case throughout. The verbs are clear and descriptive, with no deviations in style or convention across the set.
With 4 tools, the server is well-scoped for managing health reminders, covering essential operations: checking status, sending notifications, and controlling the timer. Each tool earns its place without redundancy, fitting a typical small utility server range (3-15 tools).
The toolset provides complete lifecycle coverage for a basic reminder system: start, stop, status check, and manual triggering. A minor gap is the lack of configuration update tools (e.g., modify reminder interval or message), but agents can work around this by restarting with new settings.