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

timing-mcp

v1.1.0

Published

MCP server for Timing time-tracking API - manage timers, time entries, projects, and reports

Readme

Timing MCP Server

MCP (Model Context Protocol) server for the Timing time-tracking API.

Features

  • 17 Tools covering all Timing API functionality
  • Timer Management: Start, stop, check running timer
  • Time Entries: List, create, update, delete entries
  • Projects: Full CRUD + hierarchy view
  • Reports: Generate aggregated reports
  • Teams: List teams and members
  • Resources: Quick access to projects, running timer, daily summary

Installation

Via npx (recommended)

npx timing-mcp

From source

git clone https://github.com/momodemo333/timing-mcp
cd timing-mcp
npm install
npm run build

Configuration

Set your Timing API key as an environment variable:

export TIMING_API_KEY="your-api-key"

Get your API key from: https://web.timingapp.com/integrations/tokens

Optional: Set timezone

export TIMING_TIMEZONE="Europe/Brussels"

Usage

With mcporter

# List tools
mcporter list-tools --stdio "node dist/index.js"

# List projects
mcporter call --stdio "node dist/index.js" timing_list_projects

# Start a timer
mcporter call --stdio "node dist/index.js" 'timing_start_timer(project: "My Project", title: "Working")'

# Stop timer
mcporter call --stdio "node dist/index.js" timing_stop_timer

With Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "timing": {
      "command": "node",
      "args": ["/path/to/timing-app-mcp/dist/index.js"],
      "env": {
        "TIMING_API_KEY": "your-api-key"
      }
    }
  }
}

With Clawdbot

Add to your mcporter config:

{
  "mcpServers": {
    "timing": {
      "command": "node",
      "args": ["/home/morgan/project/timing-app-mcp/dist/index.js"],
      "env": {
        "TIMING_API_KEY": "your-api-key"
      }
    }
  }
}

Available Tools

Timer

| Tool | Description | |------|-------------| | timing_start_timer | Start a new timer (stops any running timer) | | timing_stop_timer | Stop the currently running timer | | timing_get_running | Get the currently running timer |

Time Entries

| Tool | Description | |------|-------------| | timing_list_entries | List time entries with filters | | timing_create_entry | Create a completed time entry | | timing_update_entry | Update an existing entry | | timing_delete_entry | Delete a time entry | | timing_get_latest | Get the most recent entry |

Projects

| Tool | Description | |------|-------------| | timing_list_projects | List all projects | | timing_project_hierarchy | Get project tree structure | | timing_get_project | Get project details | | timing_create_project | Create a new project | | timing_update_project | Update a project | | timing_delete_project | Delete a project |

Reports & Teams

| Tool | Description | |------|-------------| | timing_generate_report | Generate aggregated report | | timing_list_teams | List your teams | | timing_list_team_members | List team members |

Activity Hierarchy (Beta) ⭐

| Tool | Description | |------|-------------| | timing_activity_hierarchy | Get detailed activity breakdown (apps, files, URLs). Perfect for daily summaries and billing preparation |

Activity Hierarchy is the key tool for AI-powered time analysis:

  • See exactly what apps/files/URLs you used
  • Identify unassigned time that needs billing
  • Generate daily/weekly summaries
  • Prepare accurate invoices

MCP Resources

| URI | Description | |-----|-------------| | timing://projects | All projects (JSON) | | timing://running | Running timer (JSON) | | timing://today | Today's summary with totals |

Examples

User: "Start a timer on Kuzco project"
→ timing_start_timer { project: "Kuzco" }

User: "How much time did I spend on Kuzco this week?"
→ timing_generate_report { 
    projects: ["/projects/3776384873043072256"], 
    start_date_min: "2026-02-05", 
    start_date_max: "2026-02-12" 
  }

User: "Stop the timer"
→ timing_stop_timer {}

User: "What projects do I have?"
→ timing_list_projects {}

User: "What did I do yesterday?"
→ timing_activity_hierarchy { start_date: "2026-02-11", end_date: "2026-02-11", block_size: "total" }

User: "Show me unassigned time from last week"
→ timing_activity_hierarchy { start_date: "2026-02-05", end_date: "2026-02-11", project_ids: ["0"], max_lines: 200 }

Development

# Run in development mode
npm run dev

# Build
npm run build

# Type check
npm run typecheck

License

MIT