work-tracker-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., "@work-tracker-mcplog that I started working on the dashboard redesign"
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.
work-tracker-mcp
MCP server that tracks what you are working on. Logs are stored locally as one markdown file per day on your Desktop.
Works with Cursor and Claude Code.
Quick install
git clone https://github.com/venkatd-media/work-tracker-mcp.git ~/Projects/work-tracker-mcp
cd ~/Projects/work-tracker-mcp
./scripts/install.shThe install script will:
Build the MCP server
Register it in Claude Code (
userscope, all projects)Register it in Cursor (
~/.cursor/mcp.json)Append work-tracking instructions to
~/.claude/CLAUDE.mdand~/.cursor/AGENTS.md
Then reload MCP in Cursor and start a new Claude Code session.
Related MCP server: wootech-jira-mcp
Storage
Default folder: ~/Desktop/work-tracker/
Each day gets a file like 2026-07-06.md:
# 2026-07-06
## Focus
Building the work-tracker MCP server
## Project
/Users/venkat.c/Projects/work-tracker-mcp
## Log
- 21:30 — Started scaffolding
- 21:45 — Switched to daily Desktop filesOverride the folder with WORK_TRACKER_DIR.
Concurrent writes from Cursor and Claude Code are safe: each day file is updated under an exclusive lock with atomic replace, so overlapping sessions cannot lose log entries.
Claude Code
One-command setup (recommended)
./scripts/install.shManual setup
npm install
npm run build
claude mcp add --scope user work-tracker -- node /absolute/path/to/work-tracker-mcp/dist/index.jsUse --scope user so the server is available in every project, not just this repo.
Import from this repo
If you open this repository in Claude Code, .mcp.json is included. Set the repo path first:
export WORK_TRACKER_MCP_ROOT=~/Projects/work-tracker-mcpThen approve the work-tracker server when prompted.
Cursor
One-command setup
./scripts/install.shManual setup
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"work-tracker": {
"command": "node",
"args": ["/absolute/path/to/work-tracker-mcp/dist/index.js"]
}
}
}For automatic tracking in every workspace, also keep the work-tracking section in ~/.cursor/AGENTS.md (the install script adds it).
Tools
Tool | Description |
| Read today's focus and log |
| Set what you are working on |
| Append a timestamped note |
| Read a specific day's file |
| List available day files |
Requirements
Node.js 20+
Cursor and/or Claude Code with MCP support
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.
Latest Blog Posts
- 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/venkatd-media/work-tracker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server