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

pullpush-mcp

v1.0.1

Published

MCP server for PullPush.io Reddit API - search Reddit comments and submissions

Readme

pullpush-mcp

An MCP (Model Context Protocol) server for the PullPush.io Reddit API. This allows Claude and other MCP-compatible AI assistants to search Reddit comments and submissions.

PullPush.io provides access to Reddit's historical data, making it possible to search posts and comments that may no longer be available through Reddit's official API.

Tools

search_comments

Search Reddit comments with the following parameters:

| Parameter | Type | Description | |-----------|------|-------------| | q | string | Search query across all comment fields | | subreddit | string | Filter by subreddit (without r/ prefix) | | author | string | Filter by username | | after | string | Results after date (epoch or relative: 30d, 1y) | | before | string | Results before date (epoch or relative: 30d, 1y) | | sort | asc | desc | Sort order (default: desc) | | sort_type | created_utc | score | Sort field (default: created_utc) | | size | number | Results to return (1-100, default: 100) |

search_submissions

Search Reddit posts/submissions with the following parameters:

| Parameter | Type | Description | |-----------|------|-------------| | q | string | Search query across all fields | | subreddit | string | Filter by subreddit (without r/ prefix) | | author | string | Filter by username | | title | string | Search in titles only | | selftext | string | Search in post body only | | after | string | Results after date (epoch or relative: 30d, 1y) | | before | string | Results before date (epoch or relative: 30d, 1y) | | sort | asc | desc | Sort order (default: desc) | | sort_type | created_utc | score | num_comments | Sort field | | size | number | Results to return (1-100, default: 25) | | score | string | Filter by score (>100, <50, or exact) | | num_comments | string | Filter by comment count (>10, <5, or exact) | | over_18 | boolean | Filter NSFW content | | is_video | boolean | Filter video posts | | locked | boolean | Filter locked posts | | stickied | boolean | Filter stickied posts | | spoiler | boolean | Filter spoiler posts |

Installation

npm (recommended)

npm install -g pullpush-mcp

From source

git clone https://github.com/jacklenzotti/pullpush-mcp.git
cd pullpush-mcp
npm install
npm run build

Usage with Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

Using npm (recommended):

{
  "mcpServers": {
    "pullpush": {
      "command": "npx",
      "args": ["-y", "pullpush-mcp"]
    }
  }
}

Using a local build:

{
  "mcpServers": {
    "pullpush": {
      "command": "node",
      "args": ["/absolute/path/to/pullpush-mcp/build/index.js"]
    }
  }
}

Restart Claude Desktop after updating the config.

Example Prompts

Once configured, you can ask Claude:

  • "Find all posts by user spez from the last year"
  • "Search for comments mentioning 'typescript' in r/programming"
  • "Show me the top 20 posts in r/LocalLLaMA sorted by score"
  • "Find comments by user GovSchwarzenegger"
  • "Search r/machinelearning for posts about transformers with more than 100 upvotes"

Development

# Build
npm run build

# Type check
npm run typecheck

# Test with MCP Inspector
npm run inspect

API Reference

This server uses the PullPush.io API. PullPush provides free access to Reddit's historical data without requiring authentication.

License

MIT