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

arctic-shift-mcp

v1.0.2

Published

MCP server for the Arctic Shift Reddit archive. Covers May 2025 to today (48h indexing lag). No API key required.

Readme

arctic-shift-mcp

MCP server for the Arctic Shift Reddit archive. Covers May 2025 to today with a ~24-48h indexing lag. The main complement to PullPush for AI tools.

No Reddit API key, no credentials, no authentication. Just install and run.

Why this exists

Reddit search is broken for AI tools:

  • site:reddit.com in web search returns almost nothing useful
  • Reddit's official API became paid in 2023 (the change that killed Apollo)
  • PullPush covers up to May 2025 only
  • reddit-mcp-buddy hits Reddit's live endpoints, which get blocked or rate-limited intermittently

Arctic Shift is an independent archive that doesn't call Reddit at query time. It covers everything from May 2025 to today, and it's fast.

Coverage

PullPush          ████████████████████░░░░░░░░░  2005 → May 2025
arctic-shift-mcp  ░░░░░░░░░░░░░░░░░░░░█████████  May 2025 → today (~48h lag)
Reddit Buddy      ░░░░░░░░░░░░░░░░░░░░░░░░░░░██  live (frequently blocked)

Note on recent posts: engagement data (scores, comment counts) is fully indexed for posts older than ~48h. Posts from the last 24-48h are present but show score: 1, comments: 0 until indexing catches up — use sort_by: date_desc for very recent content.

Use PullPush + arctic-shift-mcp together for complete Reddit coverage from 2005 to today.

Install

npm install -g arctic-shift-mcp

Register it in Claude Code at user scope (available in every session):

claude mcp add arctic-shift /opt/homebrew/bin/arctic-shift-mcp --scope user

If npm installed the binary elsewhere, use which arctic-shift-mcp to find the path.

Tools

search_submissions

Search Reddit posts by keyword, subreddit, author, date range, or flair.

query          Keyword search in title and body
subreddit      Subreddit name without r/ prefix
author         Filter by username
after          Posts after this date (e.g. "1year", "6m", "2025-01-01")
before         Posts before this date
limit          Results to return (1-100, default 15)
sort_by        date_desc | date_asc | score | num_comments
               score/num_comments fetch 50 then rank client-side
min_comments   Minimum comment count (client-side filter)
link_flair_text  Filter by post flair
title          Keyword search in title only (requires subreddit or author)

search_comments

Search comments by keyword. Supports link_id to get comments from a specific post — this works correctly (unlike PullPush which has no post ID filter).

query      Keyword search in comment body
link_id    Post ID to get comments from (e.g. "1abc2d3")
subreddit  Subreddit name
author     Filter by username
after      Comments after this date
before     Comments before this date
limit      Results to return (1-100, default 20)

get_post_comments

Get the full nested comment tree for a post, sorted by score.

link_id  Post ID, required (e.g. "1abc2d3", with or without t3_ prefix)
limit    Max comments to return (default 50, max 500)

Usage with Claude Code

Once registered, call it in any Claude Code session:

/reddit best espresso machine under $500

Or use it directly:

Search r/espresso for recommendations on entry-level espresso machines, focus on posts from 2025.

Pair with

For full Reddit coverage across all time periods:

npm install -g pullpush-mcp          # 2005 → May 2025
npm install -g arctic-shift-mcp      # May 2025 → today (~48h lag)  ← this package
npm install -g reddit-mcp-buddy      # live (last resort, frequently blocked by Reddit)

Stack

  • TypeScript, compiled to a single dist/index.js
  • MCP SDK (@modelcontextprotocol/sdk)
  • No extra dependencies beyond the SDK
  • Token-efficient: only fetches the fields actually needed (id, title, author, score, num_comments, created_utc, body, link_flair_text)

License

MIT