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

rescuetime-mcp-server

v1.0.0

Published

A Model Context Protocol (MCP) server for RescueTime - access productivity data, focus sessions, highlights, and activity tracking.

Readme

RescueTime MCP Server

A Model Context Protocol (MCP) server for RescueTime - access productivity data, focus sessions, highlights, and activity tracking.

License: MIT

Features

| Category | Tools | Description | | -------------- | ------------------------ | ------------------------------------------------------------------------------------------------- | | Analytics | get_activity_data | Query activity data with flexible filters (date range, category, productivity level, device type) | | | get_daily_summary | Last 2 weeks of daily productivity summaries with pulse scores | | | get_productivity_score | Single-day productivity pulse and detailed breakdown | | Focus | start_focus_session | Start focus mode (blocks distracting apps and sites) | | | end_focus_session | End the current focus session | | | get_focus_sessions | Recent focus session history | | Highlights | get_highlights | Get logged highlights/accomplishments (Premium) | | | post_highlight | Log a new highlight | | Offline | log_offline_time | Log offline activities (meetings, breaks, up to 4 hours) |

Quick Start

Option 1: NPX (No install required)

RESCUETIME_API_KEY=your_key npx rescuetime-mcp-server

Or add to your MCP config (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "rescuetime": {
      "command": "npx",
      "args": ["rescuetime-mcp-server"],
      "env": {
        "RESCUETIME_API_KEY": "your_api_key_here"
      }
    }
  }
}

Option 2: Claude Code

claude mcp add --transport stdio rescuetime -- npx rescuetime-mcp-server

Then set your API key in your environment or .env file.

Option 3: Install globally

npm install -g rescuetime-mcp-server
RESCUETIME_API_KEY=your_key rescuetime-mcp-server

Getting Your API Key

  1. Go to https://www.rescuetime.com/anapi/manage
  2. Create a new API key
  3. Set it as the RESCUETIME_API_KEY environment variable

Environment Variables

| Variable | Required | Description | | -------------------- | -------- | ----------------------------------------------- | | RESCUETIME_API_KEY | Yes | RescueTime API key | | TRANSPORT_TYPE | No | stdio (default) or httpStream | | PORT | No | HTTP port when using httpStream (default: 3000) |

Tool Details

get_activity_data

Query activity data with flexible filters. Returns time spent on activities, categories, or productivity levels.

Parameters:

  • perspectiverank (default), interval, or member
  • resolutionmonth, week, day (default), hour, or minute
  • restrict_kindactivity (default), category, productivity, document, efficiency, or overview
  • restrict_begin / restrict_end — Date range (YYYY-MM-DD)
  • restrict_thing — Filter to specific activity or category name
  • restrict_source_typecomputers, mobile, or offline

get_daily_summary

Returns the last 2 weeks of daily productivity rollups. Each day includes:

  • Productivity Pulse (0-100 score)
  • Time breakdowns by productivity level (Very Productive through Very Distracting)
  • Category percentages (Software Development, Communication, etc.)

get_productivity_score

Get the detailed productivity breakdown for a specific date (defaults to today).

start_focus_session

Start a RescueTime Focus Session that blocks distracting websites and apps.

Parameters:

  • duration — Minutes (must be a multiple of 5, or -1 for until end of day)

post_highlight

Log an accomplishment or milestone. Premium feature.

Parameters:

  • description — Highlight text (max 255 characters)
  • highlight_date — Date (YYYY-MM-DD, defaults to today)
  • source — Source label (defaults to "mcp-server")

log_offline_time

Log time spent away from the computer (meetings, breaks, etc.).

Parameters:

  • start_time — ISO 8601 format with timezone (e.g., 2026-03-26T09:00:00-04:00)
  • end_time — ISO 8601 format with timezone. Max 4 hours after start.
  • activity_name — Short name (e.g., "Team Meeting", "Lunch Break")
  • activity_details — Additional details (optional)

RescueTime API Notes

  • Rate limits: 60 requests/minute, 1,000 requests/hour
  • Data sync: Premium accounts sync every 3 minutes, Lite every 30 minutes
  • Highlights & Alerts: Premium features
  • Offline time: Max 4 hours per entry, no future dates

Development

pnpm install
pnpm validate        # format + lint + typecheck + test + build
pnpm inspect         # Build + launch MCP Inspector for interactive testing
pnpm dev             # Development build with watch mode

Architecture

Built with FastMCP, functype (IO, Option, Either, Try), and Zod.

  • IO effects: API calls return IO<never, Error, T> — lazy, composable, with built-in retry/timeout
  • IO.gen do-notation: Complex tool handlers use generator-based do-notation for readable effect composition
  • Option singleton: Client lifecycle managed via Option<RescueTimeClient>
  • Sealed errors: ApiError | ConfigError | RateLimitError with _kind discriminator

License

MIT


Sponsored by SapientsAI — Building agentic AI for businesses