
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
pullpush-mcp
Advanced tools
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.
search_commentsSearch 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_submissionsSearch 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 |
npm install -g pullpush-mcp
git clone https://github.com/jacklenzotti/pullpush-mcp.git
cd pullpush-mcp
npm install
npm run build
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.
Once configured, you can ask Claude:
# Build
npm run build
# Type check
npm run typecheck
# Test with MCP Inspector
npm run inspect
This server uses the PullPush.io API. PullPush provides free access to Reddit's historical data without requiring authentication.
MIT
FAQs
MCP server for PullPush.io Reddit API - search Reddit comments and submissions
We found that pullpush-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.