Timelog MCP Server
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., "@Timelog MCP ServerRegister 7.5 hours on task SGI-100 for yesterday"
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.
Timelog MCP Server
An MCP server that exposes the Timelog time registration API as tools for Claude. It lets you view, create, and manage time registrations, absences, and timesheet approvals through natural language.
Capabilities
View time registrations — by week or arbitrary date range, including financial/billable data
Create, update, and delete time registrations on any task you have access to
Absence management — search absence codes and register vacation, sick leave, etc.
Timesheet approval — check submission status and submit timesheets, with filtering by employee, department, approver, or legal entity
Organization — look up legal entities and the current user profile
Task search — find tasks to register time on by name or number
Related MCP server: TimeChimp MCP Server
Tools
User & Organization
get_current_user
Get the authenticated user's profile (name, email, department). No parameters.
get_legal_entities
Get all legal entities in the organization. Returns ID, name, active status, currency, and country for each entity. No parameters.
Time Registrations
get_weekly_registrations
Get time registrations for a specific week, grouped by day with norm hours.
Parameter | Type | Required | Description |
| string | Yes | Monday of the week (YYYY-MM-DD) |
get_registrations_by_date_range
Get time registrations between two dates.
Parameter | Type | Required | Description |
| string | Yes | Start date (YYYY-MM-DD) |
| string | Yes | End date (YYYY-MM-DD) |
get_financial_data
Get financial data (billable/invoice status) for time registrations in a date range.
Parameter | Type | Required | Description |
| string | Yes | Start date (YYYY-MM-DD) |
| string | Yes | End date (YYYY-MM-DD) |
search_tasks
Search for tasks the user can register time on. Returns task IDs needed for creating time registrations.
Parameter | Type | Required | Description |
| string | No | Task name or task number to search for |
| boolean | No | Search all tasks, not just recent (default: false) |
create_time_registration
Create a new time registration on a task. Use search_tasks first to find the TaskID.
Parameter | Type | Required | Description |
| integer | Yes | Task identifier (from |
| string | Yes | Date of the registration (YYYY-MM-DD) |
| number | Yes | Number of hours to register |
| string | No | Comment for the registration |
| string | No | JIRA ticket ID (e.g. XXX-1234) |
| boolean | No | Whether this time is billable (defaults to task setting) |
update_time_registration
Update an existing time registration. Only supply the fields you want to change.
Parameter | Type | Required | Description |
| integer | Yes | Time registration ID to update |
| integer | Yes | Task identifier |
| string | No | New date (YYYY-MM-DD) |
| number | No | New hours value |
| string | No | New comment |
| string | No | JIRA ticket ID (e.g. SGI-82108) |
| boolean | No | Whether this time is billable |
delete_time_registration
Delete a time registration by its GUID.
Parameter | Type | Required | Description |
| string (UUID) | Yes | GUID of the time registration to delete |
Absence
search_absence_codes
Search for absence codes (e.g. Ferie, Sygdom). Returns AbsenceCodeID needed for create_absence_registration.
Parameter | Type | Required | Description |
| string | No | Filter by absence code name or number |
create_absence_registration
Create an absence registration (vacation, sick leave, etc.). Use search_absence_codes to find the AbsenceCodeID. Registers a full working day by default.
Parameter | Type | Required | Description |
| integer | Yes | Absence code identifier (from |
| string | Yes | Date of the absence (YYYY-MM-DD) |
| number | No | Hours to register (omit for a full working day) |
| string | No | Comment for the registration |
Timesheet Approval
get_timesheet_status
Get weekly timesheet approval/submission status. Defaults to the authenticated user. Omit userId to get all employees (manager view).
Parameter | Type | Required | Description |
| string | Yes | Start date (YYYY-MM-DD) |
| string | Yes | End date (YYYY-MM-DD) |
| integer | No | Filter by employee UserID (omit for all employees) |
| integer | No | Filter by department ID |
| integer | No | Filter by approver UserID |
| integer | No | Filter by legal entity ID |
submit_timesheet
Submit a timesheet for approval for a date range (e.g. a full week).
Parameter | Type | Required | Description |
| string | Yes | Start date (YYYY-MM-DD) |
| string | Yes | End date (YYYY-MM-DD) |
| string | No | Comment for the submission |
| integer | No | UserID of the employee to submit for (defaults to authenticated user) |
Manager Workflows
Finding and closing open timesheets
Use get_timesheet_status without a userId to get the submission status for all employees in a period. Filter by departmentId, approverId, or legalEntityId to narrow the scope.
Once you've identified employees with open timesheets, use submit_timesheet with employeeUserId to submit on their behalf.
Example prompts:
"Show me everyone who hasn't submitted their timesheet this week" "Submit this week's timesheet for user 1234" "Submit all open timesheets for department 5 this week"
Setup
Via npx (recommended)
Add to your Claude Code .mcp.json or Claude Desktop config:
{
"mcpServers": {
"timelog": {
"command": "npx",
"args": ["-y", "timelog-mcp"],
"env": {
"TIMELOG_PAT": "<your-personal-access-token>",
"TIMELOG_BASE_URL": "https://app[X].timelog.com/<your-account>/api"
}
}
}
}From source
git clone git@github.com:Amoeslund/Timelog-MCP-server.git
cd Timelog-MCP-server
npm install
npm run buildThen point your MCP config at the built file:
{
"mcpServers": {
"timelog": {
"command": "node",
"args": ["/path/to/Timelog-MCP-server/dist/index.js"],
"env": {
"TIMELOG_PAT": "<your-personal-access-token>",
"TIMELOG_BASE_URL": "https://app[X].timelog.com/<your-account>/api"
}
}
}
}Configuration
Personal Access Token
Generate a PAT at https://login.timelog.com/personaltoken.
Base URL
Your URL follows the pattern https://app[X].timelog.com/<your-account>/api where [X] is a server number (1–10) and <your-account> is your Timelog account name. See the Timelog API docs for details.
Environment Variables
Variable | Required | Description |
| Yes | Personal Access Token (see above) |
| Yes | API base URL (see above) |
License
ISC
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
- AlicenseNot gradedqualityCmaintenanceEnables automated timesheet management including creating entries, listing work activities, managing daily scrum updates, and viewing assigned projects with automatic authentication handling.12MIT
- FlicenseBqualityDmaintenanceEnables interaction with the TimeChimp API v2 to manage projects, time entries, expenses, and invoices through natural language. It supports full CRUD operations across all major TimeChimp resources, including advanced OData query filtering and pagination.464
- FlicenseBqualityDmaintenanceEnables AI assistants to interact with the Tripletex accounting API to manage time tracking, projects, and timesheet approvals through natural language. It also supports searching and managing outgoing invoices and processing supplier invoice approvals.312

Timesheet MCP Serverofficial
AlicenseBqualityBmaintenanceEnables natural language control of the Timesheet API for timer management, task tracking, and project management through MCP tools.50541MIT
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Track time on usetimebook.com - start/stop timers, log entries, list projects/clients.
Streamline your Attio workflows using natural language to search, create, update, and organize com…
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/elisabethfalck/mcp-timelog'
If you have feedback or need assistance with the MCP directory API, please join our Discord server