woffu-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., "@woffu-mcpclock me in"
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.
MCP Woffu Server
A Model Context Protocol (MCP) server for Woffu time tracking integration. This server allows AI assistants like Claude to interact with your Woffu account for clock-in/out operations and time tracking management.
Features
Clock In/Out: Start and end your workday with simple commands
Today's Status: Check your current work status, hours worked, and schedule
Week/Month Summary: Get a comprehensive overview of your worked hours
Complete Past Days: Fill in missing time entries for past dates
Pending Days: View days without logged hours
Installation
Using npx from GitHub (recommended)
npx github:iflorit/mcp-woffu-serverInstalling globally from GitHub
npm install -g github:iflorit/mcp-woffu-server
mcp-woffu-serverFrom source
git clone https://github.com/iflorit/mcp-woffu-server.git
cd mcp-woffu-server
npm install
npm run buildConfiguration
The server requires the following environment variables:
Variable | Description | Required |
| JWT Bearer token for Woffu API | Yes |
| Your Woffu user ID | Yes |
| Woffu instance URL (e.g., | No (defaults to |
How to get your Woffu JWT Token
Log in to your Woffu web portal (e.g.,
https://mycompany.woffu.com)Open browser Developer Tools (F12)
Go to the Application tab (Chrome) or Storage tab (Firefox)
In the left panel, expand Cookies
Click on your Woffu domain (e.g.,
https://mycompany.woffu.com)Find the cookie named
woffu.tokenCopy the value - this is your
WOFFU_TOKEN
Alternative via Console:
document.cookie.split(';').find(c => c.trim().startsWith('woffu.token=')).split('=')[1]Note: JWT tokens expire periodically. You may need to refresh the token when it expires.
How to find your User ID
The User ID is embedded in the JWT token. You can decode it at jwt.io and look for the UserId field in the payload.
Alternatively:
In the browser Developer Tools, go to Network tab
Perform any action in Woffu
Look at any API request URL - it often contains your user ID (e.g.,
/api/users/1234567/...)
Usage
With Claude Desktop
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"woffu": {
"command": "npx",
"args": ["-y", "github:iflorit/mcp-woffu-server"],
"env": {
"WOFFU_TOKEN": "your-jwt-token-here",
"WOFFU_USER_ID": "your-user-id",
"WOFFU_BASE_URL": "https://mycompany.woffu.com"
}
}
}
}With Claude Code
claude mcp add woffu --env WOFFU_TOKEN=your-token --env WOFFU_USER_ID=your-id --env WOFFU_BASE_URL=https://mycompany.woffu.com -- npx -y github:iflorit/mcp-woffu-serverOr add to your .claude.json:
{
"mcpServers": {
"woffu": {
"command": "npx",
"args": ["-y", "github:iflorit/mcp-woffu-server"],
"env": {
"WOFFU_TOKEN": "your-jwt-token-here",
"WOFFU_USER_ID": "your-user-id",
"WOFFU_BASE_URL": "https://mycompany.woffu.com"
}
}
}
}Running the Server Directly
# With environment variables
export WOFFU_TOKEN="your-token"
export WOFFU_USER_ID="your-user-id"
export WOFFU_BASE_URL="https://mycompany.woffu.com"
# Run the server
npx github:iflorit/mcp-woffu-serverAvailable Tools
woffu_clock_in
Clock in to start your workday.
Parameters: None
Example response:
{
"status": "success",
"action": "clock_in",
"timestamp": "2024-01-15T09:00:00",
"signEventId": "12345"
}woffu_clock_out
Clock out to end your workday.
Parameters: None
Example response:
{
"status": "success",
"action": "clock_out",
"timestamp": "2024-01-15T18:00:00",
"signEventId": "12346"
}woffu_status
Get today's work status including schedule and hours worked.
Parameters: None
Returns: Detailed workday information including:
Current clock status
Hours worked today
Expected hours
Break times
woffu_month_summary
Get a summary of worked hours for a specific month.
Parameters:
year(optional): Year (defaults to current year)month(optional): Month 1-12 (defaults to current month)
Returns: Monthly presence summary with daily breakdowns.
woffu_week_summary
Get a weekly summary of worked hours.
Parameters:
date(optional): Any date within the desired week in YYYY-MM-DD format
Returns: Weekly presence summary with daily breakdowns.
woffu_day_detail
Get detailed information for a specific day.
Parameters:
date(optional): Date in YYYY-MM-DD format (defaults to today)
Returns: Detailed day information including all clock events.
woffu_pending_days
Get days without completed hours.
Parameters:
year(optional): Year (defaults to current year)month(optional): Month 1-12 (defaults to current month)
Returns: List of workdays where no hours have been logged.
woffu_schedule
Get the user's assigned work schedule.
Parameters: None
Returns: Schedule information including work hours and office details.
woffu_complete_day
Complete or edit time entries for a past day.
Parameters:
date: Date in YYYY-MM-DD formatslots: List of time slots within_timeandout_time(HH:MM format)
Example:
{
"date": "2024-01-10",
"slots": [
{"in_time": "09:00", "out_time": "14:00"},
{"in_time": "15:00", "out_time": "18:00"}
]
}Example Conversations with Claude
"Clock me in to Woffu"
"What's my work status for today?"
"Show me my hours for November 2024"
"I forgot to clock in yesterday. Can you fill in 9:00-14:00 and 15:00-18:00 for 2024-01-14?"
"Show me my pending days this month"
Development
Setup
git clone https://github.com/iflorit/mcp-woffu-server.git
cd mcp-woffu-server
npm installBuilding
npm run buildRunning in development
npm run devSecurity Notes
Never commit your JWT token to version control
Use environment variables or secure secret management
JWT tokens expire - refresh the token from the
woffu.tokencookie when neededThe server only accepts local connections by default
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Acknowledgments
Built with the Model Context Protocol SDK
Integrates with Woffu time tracking
This server cannot be installed
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
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/iflorit/mcp-woffu-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server