npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

timelog-mcp

v1.5.0

Published

MCP server for Timelog time registrations

Readme

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

Tools

| Tool | Description | |------|-------------| | User & Organization | | | get_current_user | Get the authenticated user's profile (name, email, department) | | get_legal_entities | Get all legal entities in the organization (ID, name, currency, country) | | Time Registrations | | | get_weekly_registrations | Get time entries for a specific week (provide the Monday date) | | get_registrations_by_date_range | Get time entries between two dates | | get_financial_data | Get billable/invoice status for registrations in a date range | | search_tasks | Search for tasks you can register time on by name or number | | create_time_registration | Register hours on a task with optional comment, billable flag, and JIRA ID | | update_time_registration | Modify an existing registration (hours, comment, date, billable, JIRA ID) | | delete_time_registration | Delete a registration by its GUID | | Absence | | | search_absence_codes | Search for absence codes (e.g. Ferie, Sygdom) | | create_absence_registration | Register absence by full day or hours | | Timesheet Approval | | | get_timesheet_status | Get weekly approval/submission status — filterable by employee, department, approver, or legal entity | | submit_timesheet | Submit a timesheet for approval for a date range |

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 [email protected]:Amoeslund/Timelog-MCP-server.git
cd Timelog-MCP-server
npm install
npm run build

Then 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 | |----------|----------|-------------| | TIMELOG_PAT | Yes | Personal Access Token (see above) | | TIMELOG_BASE_URL | Yes | API base URL (see above) |

License

ISC