standup-journal-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| STANDUP_DB_PATH | No | Override the default SQLite database path (default: ~/.standup-journal/standups.db). |
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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| log_taskA | Log a single piece of work: what you did, are doing, or are blocked on. |
| update_task_statusA | Update the status of an existing logged task (e.g. unblock it). |
| update_task_tagA | Change the tag on an existing logged task, without altering its log_date, status, description, or ID. |
| update_task_due_dateA | Change the due date on an existing logged task, without altering its log_date, status, description, tag, or ID. |
| get_tasks_by_dateA | Retrieve all logged tasks for a given ISO date (YYYY-MM-DD). |
| get_tasks_betweenA | Retrieve all logged tasks within an inclusive date range (YYYY-MM-DD each). |
| list_tagsA | List all distinct tags/projects currently in use, with open task counts. |
| generate_standup_reportA | Generate a clean, bulleted standup message from yesterday and today. |
| add_checklist_itemA | Add a task to the checklist. Set parent_id to nest it as a subtask under an existing task. |
| delete_checklist_itemA | Delete a task from the checklist by ID, including all nested subtasks. |
| toggle_checklist_itemB | Toggle a task between done and not done. |
| get_checklistA | Get all tasks as a checklist view, grouped by status. |
| open_checklist_dashboardA | Launch the interactive task checklist in the browser. Use this whenever the user wants to view, manage, or work through their tasks interactively — whether they're starting their day, checking what's left, or asking about what to do next. Returns a localhost URL. Data persists across sessions. |
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 13 tools
Most tools have clearly distinct purposes, and the descriptions carefully separate journal tasks from checklist items. However, log_task vs add_checklist_item and update_task_status vs toggle_checklist_item could cause confusion when a user simply says 'add a task' or 'mark this done' without clarifying which store they mean.
Tool names mostly follow a consistent verb_noun snake_case pattern like update_task_status, get_tasks_by_date, and delete_checklist_item. The main inconsistency is the mixing of 'task' and 'checklist_item' terminology without a clear prefix to distinguish the two domains, plus the less patterned generate_standup_report and open_checklist_dashboard.
Thirteen tools is well within the ideal range for a focused server. Each tool earns its place: seven support journal logging and reporting, five cover checklist management, and one launches the interactive dashboard.
The journal and checklist domains both have solid create/read/update coverage, and the dashboard fills an interactive role. The notable gap is that logged journal tasks cannot be deleted or have their description edited, which could leave an agent unable to fully correct a mislogged entry.