loading…
Search for a command to run...
loading…
Enables managing daily change logs with automatic formatting, intelligent monitoring, and client-ready output, helping developers document work and generate pro
Enables managing daily change logs with automatic formatting, intelligent monitoring, and client-ready output, helping developers document work and generate professional reports.
A professional Model Context Protocol (MCP) server for managing daily change logs with automatic formatting, intelligent monitoring, and client-ready output. This tool helps developers document their work, track development activities, and generate professional reports.
# Clone the repository
git clone https://github.com/yourusername/mcp-daily-change-log.git
cd mcp-daily-change-log
# Install dependencies
npm install
Add this configuration to your MCP client configuration file:
For Claude Desktop:
~/.config/claude/claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"mcp-daily-change-log": {
"command": "node",
"args": ["enhanced-mcp-server.js"],
"cwd": "/path/to/mcp-daily-change-log",
"env": {}
}
}
}
Important: Replace /path/to/mcp-daily-change-log with the actual absolute path to your project directory.
# Start the MCP server
npm run mcp-server
log_my_workAutomatically generate and log professional summary of recent development work.
Use: log_my_work
Optional: customHeader - Custom header for the work summary
generate_daily_summaryGenerate comprehensive end-of-day summary of all development activities.
Use: generate_daily_summary
Optional: finalize (true/false) - Whether to create final polished summary
analyze_conversationAnalyze user prompts and AI responses to track development progress.
Use: analyze_conversation
Required: userPrompt - User prompt or command
Optional: aiResponse - AI response or output
Optional: codeChanges - Array of code changes made
get_monitoring_statusGet current status of intelligent monitoring system.
Use: get_monitoring_status
Optional: detailed (true/false) - Include detailed activity breakdown
add_daily_log_entryManually add a professional entry to the daily change log.
Use: add_daily_log_entry
Required: header - Header/title for the log entry
Required: notes - Notes content
Optional: category - Category from predefined list
Optional: tags - Array of tags for the entry
view_recent_entriesView recent changelog entries.
Use: view_recent_entries
Optional: days - Number of days to look back (default: 7)
# Add an entry with all parameters
node direct-add.js "Header" "Notes" "Category" "tag1,tag2"
# Examples:
node direct-add.js "Bug Fix" "Fixed login issue" "Bug Fixes" "auth,frontend"
node direct-add.js "Feature Implementation" "Added user dashboard" "Feature Implementation" "ui,backend"
# Generate changelog from today's git commits
npm run git-log:today
# Generate changelog from the past week's git commits
npm run git-log:week
# Custom git log with specific parameters
npm run git-log -- "3 days ago" "/path/to/repo" "Custom Header" "Category" "tag1,tag2"
# Track a new deployment
npm run deploy -- "v1.0.0" "production"
# Track deployment with previous version and custom changes
npm run deploy -- "v1.0.1" "production" "v1.0.0" "." "Fixed login bug" "Added new dashboard"
# List recent deployments
npm run deploy:list
# List deployments for specific environment with limit
npm run deploy:list -- "staging" 5
node direct-add.js "Daily Summary" "Completed all sprint tasks" "Documentation" "summary,completion"
# Start MCP server
npm run mcp-server
# Alternative: Start server directly
node enhanced-mcp-server.js
Start Your Day
npm run mcp-server
Work Normally
Log Your Work (Multiple Options)
Option A: Using MCP Tools in Claude Desktop
Use: log_my_work
Option B: Using Direct-Add Script
node direct-add.js "Task Header" "Task description" "Category" "tags"
Generate Daily Summary
Use: generate_daily_summary
node direct-add.js "Client Meeting" "Discussed project requirements" "Documentation" "client,meeting"
node direct-add.js "Authentication System" "• Implemented JWT authentication\n• Added password reset functionality\n• Created user registration flow" "Feature Implementation" "auth,security,backend"
Use: get_monitoring_status with detailed=true
Use: analyze_conversation with userPrompt="Implemented new feature" and aiResponse="Feature implemented successfully"
Use: view_recent_entries with days=7
Use: generate_daily_summary with finalize=true
Use: view_recent_entries with days=7
The tool automatically creates and manages:
mcp-daily-change-log/
├── change-notes/ # Daily changelog files
│ ├── 2025-07-15-change-log.md
│ ├── 2025-07-14-change-log.md
│ └── 2025-07-13-change-log.md
├── lib/ # Core libraries
│ ├── dailyLogManager.js # File management & entry creation
│ ├── intelligentMonitor.js # Real-time activity monitoring
│ └── professionalFormatter.js # Professional text formatting
├── enhanced-mcp-server.js # Enhanced MCP server v3.0
├── direct-add.js # Direct entry script (reliable alternative)
├── config.js # Configuration settings
├── package.json # Dependencies & scripts
├── package-lock.json # Dependency lock file
└── README.md # Comprehensive documentation
The tool automatically converts casual language to professional format:
| Casual Input | Professional Output |
|---|---|
| "fixed bug" | "Resolved functionality issue" |
| "worked on feature" | "Developed feature implementation" |
| "tested stuff" | "Validated system components" |
| "client meeting" | "Client Communication Session" |
| "code review" | "Code Quality Assessment" |
# Daily Progress Report - 2025-07-15
## Executive Summary
This document outlines the development activities and progress made on 2025-07-15.
---
## Feature Implementation
- Developed user authentication module with JWT integration.
- Implemented password reset functionality with email verification.
- Created comprehensive user registration flow with validation.
**Logged at:** 14:30:22
**Tags:** #auth, #security, #backend
## Bug Fixes
- Resolved login timeout issues affecting user sessions.
- Fixed responsive design problems on mobile devices.
**Logged at:** 16:45:10
**Tags:** #frontend, #mobile, #ui
Edit config.js to customize:
export default {
// Base directory for change logs
changeLogDir: 'change-notes',
// File format
fileFormat: '{date}-change-log.md',
// Available categories
categories: [
'Feature Implementation',
'Bug Fixes',
'Documentation',
// Add custom categories
],
// Entry template
entryTemplate: '## {header}\n\n{notes}\n\n**Logged at:** {time}\n\n'
};
Problem: "0 tools enabled" in Claude Desktop
Solution:
Problem: Server fails to start
Solution:
# Check Node.js version
node --version
# Reinstall dependencies
npm install
# Test server directly
node enhanced-mcp-server.js
Problem: Entries not appearing in files
Solution:
# Use direct-add as reliable alternative
node direct-add.js "Test Entry" "Testing file writing" "Testing" "test"
# Check file permissions
ls -la change-notes/
# After completing a feature
node direct-add.js "User Dashboard" "Completed user dashboard with analytics" "Feature Implementation" "ui,analytics"
# After fixing bugs
node direct-add.js "Bug Resolution" "Fixed authentication timeout issues" "Bug Fixes" "auth,security"
# Generate changelog from git commits
npm run git-log:today
# Track a deployment
npm run deploy -- "v1.0.0" "production" "" "." "Initial release"
# End of day summary
Use: generate_daily_summary
# Before standup meeting
Use: view_recent_entries with days=1
# For client updates
Use: generate_daily_summary with finalize=true
# For sprint reviews
Use: view_recent_entries with days=7
For issues or questions:
The Git Integration feature automatically generates changelog entries from your git commits.
# Generate changelog from git commits in the last day
npm run git-log:today
# Generate changelog from git commits in the last week
npm run git-log:week
# Custom git log with specific parameters
npm run git-log -- "3 days ago" "/path/to/repo" "Custom Header" "Category" "tag1,tag2"
The Deployment Tracking feature helps you track deployments and generate release notes.
# Track a new deployment
npm run deploy -- "v1.0.0" "production"
# Track deployment with previous version and custom changes
npm run deploy -- "v1.0.1" "production" "v1.0.0" "." "Fixed login bug" "Added new dashboard"
# List recent deployments
npm run deploy:list
# List deployments for specific environment with limit
npm run deploy:list -- "staging" 5
Release notes are automatically generated and saved to the deployments directory. You can find them at:
deployments/release-notes-{version}.md
The codebase has been recently optimized for better maintainability:
docs/ directoryThe system now has a cleaner, more focused architecture with comprehensive documentation in a single README.md file.
MIT License - Feel free to use and modify as needed.
Ready to start professional development logging! 🚀
Run in your terminal:
claude mcp add mcp-daily-change-log -- npx Security
Low riskAutomated heuristic from public metadata — not a security guarantee.