pullpush-mcp
Enables searching Reddit comments and submissions using the PullPush.io API, allowing AI assistants to access historical Reddit data.
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.