Model Context Protocol (MCP) server for automated worklog generation from git commits with AI enhancement and Povio dashboard integration
npm install povio-worklog-mcp



A Model Context Protocol (MCP) server that provides automated worklog generation from git commits with AI enhancement and seamless Povio dashboard integration.
Transform this:
``bash`
git log # Copy commits manuallyOpen Povio dashboard
Fill in project, hours, description
Submit
Into this:
``
wl FaceFlip 8 # Done! ā
- š List Projects: Easily view all your active Povio projects
- š·ļø Use Project Names: Simply use project names like "FaceFlip" or "Autobiography"
- š Generate Worklog: Automatically analyze git commits and generate professional worklog descriptions
- š
Flexible Dates: Support for "today", "yesterday", and specific dates (e.g., "2024-10-28", "Oct 28, 2024")
- š¤ AI Enhancement (Default): AI automatically generates optimized, guideline-compliant descriptions from your commits
- š¤ Post to Povio: Post worklogs directly to Povio dashboard
- ā” Combined Action: Generate and post in one step
- š« Smart Parsing: Automatically extracts ticket numbers (e.g., ENG-155, WAY-204)
- š Professional Formatting: Creates client-appropriate worklog descriptions
No need to clone! Just add the configuration to Cursor:
File: ~/.cursor/mcp.json
`json`
{
"mcpServers": {
"povio-worklog": {
"command": "npx",
"args": ["-y", "povio-worklog-mcp"],
"env": {
"POVIO_API_TOKEN": "your-povio-token-value"
}
}
}
}
That's it! The package will be automatically downloaded and run via npx.
Configuration Details:
- POVIO_API_TOKEN: Your Povio dashboard cookie token value (see Getting Your Token below for detailed instructions)
- Just provide the token value - the _poviolabs_dashboard= prefix is automatically added
- Note: The tool uses the current working directory of your Cursor workspace as the git repository
- Updates: npx automatically uses the latest version on each run
If you want to contribute or modify the source code:
#### 1. Clone the Repository
`bash`
git clone https://github.com/EgzonArifi/povio-worklog-mcp.git
cd mcp-server
#### 2. Install Dependencies
`bash`
npm install
#### 3. Build the Server
`bash`
npm run build
#### 4. Configure Cursor
File: ~/.cursor/mcp.json
`json`
{
"mcpServers": {
"povio-worklog": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"POVIO_API_TOKEN": "your-povio-token-value"
}
}
}
}
When to rebuild:
- ā
First time setup
- ā
After pulling updates from git
- ā
After making changes to src/ files
After adding the configuration, fully restart Cursor (Cmd+Q and reopen, not just close the window) to load the MCP server.
> ā ļø Getting "command not found" error? See TROUBLESHOOTING.md for quick fixes. Most common solution: npm cache clean --force and restart Cursor.
Once configured, you can use natural language to interact with the worklog tools:
For faster workflow, use these short patterns:
``
wl ā Generate worklog for today
wl yesterday ā Generate worklog for yesterday
wl 2024-10-28 ā Generate worklog for specific date (Oct 28)
wl list ā List Povio projects
wl post FaceFlip 8 ā Generate and post to FaceFlip, 8 hours
wl FaceFlip 4 ā Generate and post to FaceFlip, 4 hours
wl yesterday FaceFlip 8 ā Generate yesterday's worklog and post
Or use full natural language:
``
"generate worklog for today"
"generate worklog for yesterday"
"generate worklog for 2024-10-28"
"post worklog to FaceFlip with 4 hours"
"list my povio projects"
1. Cursor Composer (Cmd+I or Cmd+K): Type your commandCmd+L
2. Chat (): Use for longer workflows.cursorrules
3. .cursorrules: Add custom shortcuts (see file in project)
- Use .cursorrules file for project-specific shortcuts
- Type "wl" for quick worklog commands (if using .cursorrules)
- Save common project names as shortcuts in your rules
- Chain commands: "wl list, then post to FaceFlip 8 hours"
``
You: "generate worklog for today"
AI: [Uses generate_worklog tool with AI enhancement]
Analyzes commits and generates optimized description following Povio guidelines
Returns: Enhanced, client-appropriate worklog description
``
You: "generate worklog for today without AI"
AI: [Uses generate_worklog tool with enhanceWithAI=false]
Returns: Basic auto-generated description
``
You: "list my povio projects"
AI: [Uses list_povio_projects tool]
Shows all your active projects with roles
`
You: "post worklog with 4 hours to FaceFlip"
AI: [Uses post_worklog tool]
Automatically resolves project by name and posts
You: "post worklog with 6 hours to Autobiography"
AI: [Uses post_worklog tool]
Posts to Autobiography
`
`
You: "generate and post worklog for today, 4 hours"
AI: [Uses generate_and_post_worklog tool]
Generates from commits AND posts to Povio (uses DEFAULT_PROJECT_ID)
You: "generate and post worklog for yesterday, 6 hours, project 12345"
AI: [Uses generate_and_post_worklog tool]
Generates and posts to specific project
`
List all your active projects in Povio.
Parameters: None
Returns:
`
Found 6 active project(s):
⢠Autobiography (Ios Engineer)
⢠FaceFlip (Ios Engineer)
⢠Povio Estimations (Ios Engineer)
⢠Team Leads (Lead Engineer)
⢠iOS Internal (Ios Engineer)
⢠Bunny CDN Mobile (Ios Engineer)
`
Usage:
``
You: "list my povio projects"
AI: [Uses list_povio_projects tool]
Shows all your active projects with roles
Generate a worklog from git commits.
Parameters:
- timeframe (required): Date format - supports:"today"
- , "yesterday""2024-10-28"
- Specific dates: (YYYY-MM-dd), "10/28/2024" (MM/dd/YYYY), "28.10.2024" (dd.MM.YYYY)repository
- (optional): Path to git repository (defaults to current directory)enhanceWithAI
- (optional): Defaults to true. Set to false to disable AI enhancement (not recommended)
Returns (AI enhancement mode - default):
The tool returns:
- Detailed commit information with context
- Povio guidelines for the AI to follow
- A prompt requesting the AI to generate an optimized description
- Auto-generated description as a reference
The AI will then analyze the commits and create a superior, client-appropriate worklog description.
Returns (basic mode - when disabled):
`json`
{
"date": "2024-10-28",
"description": "[ENG-155] Implement Screenshot Upload Feature",
"commits": [
"8e644dc - ENG-155 Implement Screenshot Upload Feature"
],
"ticketNumbers": ["ENG-155"]
}
Post a worklog entry to Povio dashboard.
Parameters:
- description (required): Worklog descriptionprojectName
- (required): Project name (e.g., "FaceFlip", "Autobiography")hours
- (required): Number of hours workeddate
- (required): Date in YYYY-MM-dd format
Returns:
``
ā Worklog posted successfully!
Date: 2024-10-28
Hours: 4
Project ID: 15886
Usage:
`
You: "post worklog with 4 hours to FaceFlip"
AI: [Uses post_worklog tool]
Automatically resolves "FaceFlip" and posts
You: "post 6 hours to Autobiography"
AI: [Uses post_worklog tool]
Posts to Autobiography
`
Combined tool that generates from commits and posts to Povio.
Parameters:
- timeframe (required): Date format - supports:"today"
- , "yesterday""2024-10-28"
- Specific dates: (YYYY-MM-dd), "10/28/2024" (MM/dd/YYYY), "28.10.2024" (dd.MM.YYYY)projectName
- (required): Project name (e.g., "FaceFlip", "Autobiography")hours
- (required): Number of hours workedrepository
- (optional): Path to git repositoryenhanceWithAI
- (optional): Defaults to true. Set to false to disable AI enhancement and auto-post (not recommended)
Returns:
Combined summary with generation and posting results.
Note: By default (AI enhancement enabled), the tool will:
1. Generate the worklog with AI enhancement prompt
2. Wait for AI to create optimized description
3. NOT post automatically (you'll then use post_worklog with the AI-generated description)
All worklog generation now uses AI enhancement by default. This feature:
1. Analyze Commits: The tool extracts your git commits with full context
2. Apply Guidelines: Provides the AI with Povio's specific guidelines
3. Generate Description: The AI creates an optimized, client-appropriate description
4. Review & Post: You review the AI-generated description and post it
- šÆ Better Context: AI understands the bigger picture from multiple commits
- š Improved Language: Generates more professional, client-facing descriptions
- ā
Guideline Compliance: Automatically follows Povio's invoicing guidelines
- ā” Time Saving: No need to manually craft descriptions
Your commits:
``
8e644dc - ENG-155 Implement Screenshot Upload Feature
a2b3c4d - ENG-155 Add error handling for uploads
d5e6f7g - ENG-155 Update UI for better UX
Standard description:
``
[ENG-155] Implement Screenshot Upload Feature
AI-enhanced description:
``
[ENG-155] Implemented screenshot upload functionality in developer settings with comprehensive error handling and improved user interface for enhanced user experience
AI enhancement is automatic - just use the normal commands:
``
You: "generate worklog for today"
To disable AI enhancement (not recommended), you can explicitly set enhanceWithAI: false when calling the tool directly, or say "without AI".
This tool generates descriptions that appear on client invoices. The formatter:
- ā
Filters commits to only YOUR commits (based on git user.email)
- ā
Creates professional, client-appropriate descriptions
- ā
Removes technical jargon (branch names, PR numbers, etc.)
- ā
Extracts and includes ticket numbers
- ā
Combines multiple commits into dense, descriptive format
Povio Guidelines:
> Logs are shown on invoices for clients exactly as they are, so make sure they are appropriate and descriptive. Write down what you accomplished for the client in a dense format and add ticket numbers or descriptions if possible.
The tool automatically formats your commits to follow these guidelines. With AI enhancement mode, you get even better descriptions that maximize clarity and professionalism.
The POVIO_API_TOKEN should be set to just the cookie token value. The _poviolabs_dashboard= prefix is automatically added by the server.
1. Log in to Povio Dashboard
2. Open DevTools (Press F12 or right-click ā Inspect)
3. Go to Application/Storage tab
- Chrome/Edge: Click "Application" tab ā "Cookies" ā https://app.povio.comhttps://app.povio.com
- Firefox: Click "Storage" tab ā "Cookies" ā
- Safari: Enable Developer menu, then Develop ā Show Web Inspector ā Storage
4. Find the cookie named _poviolabs_dashboard
5. Copy just the cookie value (the part after _poviolabs_dashboard=):`
`
s%3Aabcd1234...xyz
=
ā ļø Important:
- Copy only the value (the part after the sign)_poviolabs_dashboard=
- Do NOT include - it's added automatically
- The value is usually very long (300-500 characters)
- Don't add quotes around it in the config
6. Add to your Cursor MCP configuration (~/.cursor/mcp.json):
`json`
{
"mcpServers": {
"povio-worklog": {
"command": "npx",
"args": ["-y", "povio-worklog-mcp"],
"env": {
"POVIO_API_TOKEN": "s%3Aabcd1234...your-actual-cookie-value"
}
}
}
}
`json`
"POVIO_API_TOKEN": "s%3AY1lndE1GK256eTZzZmd0L2s5ODc2djdqaTdrL2VaZFlFS2..."
- ā Wrong: "your-povio-token-value" (placeholder text)"_poviolabs_dashboard=s%3Aabcd1234..."
- ā Wrong: (includes prefix - will still work but unnecessary)"s%3Aabcd1234..."
- ā
Correct: (just the token value)
Use list_povio_projects to see all your active projects with their IDs.
Common examples:
- FaceFlip (ID: 15886)
- Autobiography (ID: 14093)
- Team Leads (ID: 13396)
- iOS Internal (ID: 13247)
For development with auto-rebuild:
`bash`
npm run dev
`bash`
npm run clean
npm run build
You can test the server manually by running:
`bash`
node dist/index.js
Then send JSON-RPC messages via stdin.
1. Check that the server was built:
`bash`
ls -la dist/index.js
2. Test the server manually:
`bash`
node dist/index.js
(It should run without errors and wait for input)
3. Check Cursor logs for MCP errors
If posting to Povio fails:
1. Verify your token is set in the Cursor MCP configuration
2. Check token validity (it may have expired)
3. Get a fresh token from the Povio dashboard
If worklog generation returns no commits:
1. Verify you're in a git repository:
`bash`
git status
2. Check if you have commits today:
`bash`
git log --since="today" --oneline
3. The server uses --all flag to check all branches
This MCP server is built with TypeScript and follows the Model Context Protocol specification. It provides structured tools that AI assistants like Claude can use to help with worklog management.
Key Components:
- src/services/git.ts - Git commit analysissrc/services/povio.ts
- - Povio API integrationsrc/services/formatter.ts
- - Worklog formattingsrc/tools/` - MCP tool definitions
-
MIT