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

rewind-mcp-server

v0.10.0

Published

MCP server for the Rewind personal data API

Readme

rewind-mcp-server

CI npm version docs License: MIT

MCP server for the Rewind personal data API. Gives AI assistants access to your listening, running, watching, collecting, reading, and event-attendance data.

Full reference: docs.rewind.rest/mcp-server.

Setup

Desktop apps

Add to your MCP client config (Claude Desktop, ChatGPT, Gemini, etc.):

{
  "mcpServers": {
    "rewind": {
      "command": "npx",
      "args": ["-y", "rewind-mcp-server"],
      "env": {
        "REWIND_API_KEY": "rw_live_your_key_here"
      }
    }
  }
}

Mobile and web

Add as a remote integration in your client's settings:

  • URL: https://mcp.rewind.rest/mcp
  • Authorization: Bearer rw_live_your_key_here
claude mcp add rewind -- npx -y rewind-mcp-server

Requires a Rewind API key. REWIND_API_URL defaults to https://api.rewind.rest.

Tools

| Domain | Source | Tools | | ---------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------- | | Listening | Last.fm | Now playing, recent scrobbles, stats, top artists/albums/tracks, streaks, artist and album details, genre breakdown over time | | Running | Strava | Stats, recent runs, personal records, streaks, activity details, per-mile splits, per-year summaries | | Watching | Plex, Letterboxd | Recent watches, movie details, browse by genre/decade/director, stats, genre/decade/director breakdowns | | Collecting | Discogs, Trakt | Vinyl collection, physical media, collection and media stats | | Reading | Instapaper | Recent articles, highlights, random highlight, stats, semantic similar-article recall via find_similar_articles | | Attending | Calendar, Gmail | Attended events with filters, single event with player stat lines, sports season W/L, player photos and appearances, year-in-review | | Cross-domain | All | Full-text search with keyword/semantic/hybrid modes, dedicated semantic_search for reading, unified feed, on-this-day, health |

Tool responses include images, click-through resource links, and structured JSON. Pass include_images: false to keep responses compact.

On clients that support MCP Apps (Claude Desktop, Claude web, VS Code Copilot, Goose), get_recent_watches, get_recent_reads, get_top_albums, and get_top_artists render interactive grids inline; other clients see the standard text + image response.

Example queries

  • "What albums have I been listening to the most recently?"
  • "Compare my mile splits from this month vs last month"
  • "When was the last time I watched a film by Wes Anderson?"
  • "What Beastie Boys records are missing from my vinyl collection?"
  • "How many articles did I read last year and stack-rank the top 10 sources"
  • "Can you give me a quick summary of everything I did last week?"

Prompts

Slash-command prompts that orchestrate multiple tools: weekly-summary, year-in-review, compare-periods, letterboxd-review-draft, training-report, film-diet, find-article. See the docs for argument shapes.

Authentication

Desktop apps use the REWIND_API_KEY env var passed to the server process; the server uses it as a Bearer token to the Rewind API.

Mobile and web clients connect to mcp.rewind.rest and authenticate via OAuth 2.1 with GitHub as the identity provider (1h access tokens, 90d refresh, PKCE S256).

The server is read-only. No write or admin operations are exposed.

Privacy and support