standup-journal-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@standup-journal-mcpGenerate my standup report for today."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Following Along (YouTube Tutorial)
This project follows MCP Tutorial: Build Your First MCP Server — steps below mirror that walkthrough, adapted for uv and the current v2 SDK.
Step 1: Initialize the project and install the MCP SDK
From an empty repo, in your terminal:
```bash uv init uv add "mcp[cli]" ```
This creates pyproject.toml, uv.lock, and a .venv, with mcp[cli]
installed as a dependency.
Step 2: Write the server
Create main.py in the project root:
(paste the code above)
This mirrors the PyPI quickstart skeleton (from mcp.server import MCPServer, @mcp.tool() decorators), swapped in with the standup journal's own tools:
log_task(task_description, status="done")— log what you did.get_tasks_by_date(log_date)— see everything logged on a given day.generate_standup_report()— pull yesterday's done items and current blockers into a Slack-ready bulleted message.
Note on the video: the tutorial uses FastMCP from mcp.server.fastmcp(the v1.x SDK API from April 2025). uv add "mcp[cli]" today installs the v2 SDK, where FastMCP was renamed MCPServer and moved to mcp.server. The concepts and decorators (@mcp.tool(), @mcp.resource()) are unchanged; only the import path and class name differ.
Data lives in a local SQLite file at ~/.standup-journal/standups.db
(override with STANDUP_DB_PATH), created automatically on first run.
Step 3: Install the server into Claude Desktop
From the project root:
```bash uv run mcp install main.py ```
This imports main.py, reads the server's name ("standup-journal", set
via MCPServer("standup-journal")), and writes the launch command directly
into Claude Desktop's config file for you — no manual JSON editing needed.
Example output:
``` INFO Added server 'standup-journal' to Claude config INFO Successfully installed standup-journal in Claude app ```
Fully quit Claude Desktop (not just the window) and reopen it for the new server to show up. Your four tools — log_task, get_tasks_by_date, generate_standup_report, and (if added) update_task_status should then be available in chat.
Under the hood, mcp install writes an entry that launches your server via uv run, pinned to the exact mcp version installed in your project, so Claude Desktop always runs it in the right environment, without you needing standup-journal on your system PATH.
Step 4: Verify the tools are visible in Claude Desktop
mcp install edits the config file automatically, but if you ever need to check or edit it by hand (or just confirm the entry is there), the config lives under Claude Desktop's Developer settings.
Open Claude Desktop.
Open the app menu (Windows/Linux: hamburger menu; macOS: the app name in the system menu bar) and select Settings.
Go to the Developer tab.
Click Edit Config — this opens
claude_desktop_config.jsonin your default text editor. You should see astandup-journalentry undermcpServers, written there bymcp installin Step 3.Save the file (even with no changes) and fully quit and reopen Claude Desktop to load the tools.
Once it restarts, click the + (or paperclip) icon in the chat box and select Connectors — standup-journal should be listed there, with log_task, get_tasks_by_date, and generate_standup_report available as tools.
Related MCP server: kanban-mcp
Testing in Claude Desktop
Once standup-journal shows as connected under Connectors (Step 4), test it with natural chat requests. Claude decides which tool to call based on what you ask and each tool's docstring.
Try this sequence
Log a completed task:
"Log that I finished the login screen styling."
Claude should call log_task. The first time, you'll get a permission prompt, approve it. Look for an expandable tool-call block in the chat showing the tool name and arguments used.
Log a blocker:
"Log that I'm blocked on the AWS deployment because permissions are broken."
Check what's logged today:
"What have I logged for today?"
Should trigger
get_tasks_by_datewith today's date.Generate the standup report:
"Generate my standup report."
Should call
generate_standup_reportand return a bulleted, Slack-ready summary of yesterday's done items and open blockers.
If a tool doesn't get called
Claude decides whether to call a tool based on phrasing. Try being more explicit ("use the standup journal to log...") if it's not picking it up.
Verify the data actually landed by checking the SQLite file directly:
```bash sqlite3 ~/.standup-journal/standups.db "SELECT * FROM tasks;" ```
(adjust the path if you set STANDUP_DB_PATH)
If the connector won't connect or shows an error
Claude Desktop keeps a log per server:
macOS:
~/Library/Logs/Claude/mcp-server-standup-journal.logWindows:
%APPDATA%\Claude\logs\
Check there for a Python traceback if main.py failed to start.
Usually the issue is anything printed to stdout before the server starts. Stdio is the protocol channel for this transport, so a stray print() statement corrupts the connection. Use logging (which writes to stderr) instead of print() if you need to debug inside the server.
Sources: MCP docs — Connect local servers, Claude docs — MCP Apps troubleshooting
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for structured daily work diary management, enabling entries, standup summaries, weekly reports, full-text search, and automatic git commits.14MIT
- Flicense-qualityCmaintenanceMCP server for task/ticket management with dependency tracking, supporting CRUD operations, status management, project filtering, and automatic data migrations.1
- Flicense-qualityBmaintenanceA lightweight task management MCP server that enables CRUD operations on tasks stored in a single JSON file, including listing, creating, updating progress, and setting priorities.133
- FlicenseAqualityCmaintenanceMCP server that tracks what you are working on. Logs are stored locally as one markdown file per day on your Desktop.5
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
A MCP server built for developers enabling Git based project management with project and personal…
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rominap22/standup-journal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server