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

intervals-mcp

v1.0.18

Published

MCP server for the Intervals time tracking & task management API

Readme

Intervals MCP Server

Connect Claude Desktop to your Intervals account. Ask Claude to track time, manage tasks, look up projects, pull reports, and more — all without leaving your conversation.


Prerequisites

Check Node.js

Open Terminal and run:

node --version

If you see a version number (e.g. v20.11.0), you're good. If you get "command not found", download and install the LTS version from nodejs.org.


Installation (Mac)

Step 1: Get your Intervals API token

  1. Log into myintervals.com
  2. Hover over your profile picture
  3. Click My Account
  4. Click API Access
  5. Generate a token if you don't have one, then copy it

Note: Use your own token — do not share it. All activity is attributed to the token owner.

Step 2: Edit the Claude Desktop config

Open the config file directly from Claude:

  1. Click your name in the lower-left corner of Claude Desktop
  2. Click Settings
  3. Click Developer in the left column
  4. Click the Edit Config button

Add the intervals block inside mcpServers:

{
  "mcpServers": {
    "intervals": {
      "command": "npx",
      "args": ["-y", "intervals-mcp"],
      "env": {
        "INTERVALS_API_TOKEN": "your_token_here"
      }
    }
  }
}

Replace your_token_here with the token you copied in Step 1.

If you already have other MCP servers configured, add the intervals block alongside the existing entries — don't replace the whole file.

Step 3: Restart Claude Desktop

Quit Claude completely with Cmd+Q, then reopen it.

To verify the setup worked, open a new chat and ask:

"What Intervals tools do you have available?"

Claude should list the available tools (timers, tasks, projects, time entries, etc.).

Example prompts

Once connected, try asking Claude:

  • "Show me all open tasks assigned to me"
  • "How many hours did I log last week, broken down by project?"
  • "Create a task called 'Update onboarding docs' in the Acme project"
  • "Start a timer on task 1234"
  • "What projects does the Acme client have?"
  • "Log 2 hours to the Website Redesign project for today, billable"
  • "Show me all unpaid invoices"
  • "What work types are available?"

Available tools

| Category | Tools | |---|---| | Timers | Get active timers, start timer, stop timer | | Time entries | List, create, update, delete | | Tasks | List, get, create, update, delete | | Projects | List, get, create, update | | Milestones | List, create, update | | Clients | List, get, create, update | | People | List, get, get current user | | Invoices | List, get, create | | Expenses | List, create | | Reporting | Time summary by project, person, or work type | | Lookups | Work types, task statuses, task priorities |


Troubleshooting

Claude doesn't show Intervals tools

  • Make sure you restarted Claude Desktop completely (Cmd+Q, not just closing the window)
  • Check that your JSON config is valid — paste it into jsonlint.com to verify
  • Confirm Node.js is installed: node --version

"Unauthorized" errors

  • Double-check your API token is correct and hasn't been regenerated
  • Make sure there are no extra spaces around the token in the config file

npx is slow on first run

  • The first time you run npx it downloads the package — this is normal. Subsequent runs use the cache and are much faster.

Security

Your API token is stored only in your local Claude Desktop config file and is never sent anywhere except directly to the Intervals API over HTTPS. The MCP server runs locally on your machine.


License

MIT