# PullPush Reddit (npm · pullpush-mcp)

Search Reddit comments and submissions via PullPush.io with filtering by subreddit, author, and date

- Trust score: 66/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `pullpush-mcp`: 66/100 (this document), [markdown](https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp.md), [page](https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp)

## Channel facts

- Registry: `npm`
- Package: `pullpush-mcp`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 130 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 60/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 502 tokens (~251/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add jacklenzotti-pullpush-mcp -- npx -y pullpush-mcp
```

### Codex

```bash
codex mcp add jacklenzotti-pullpush-mcp -- npx -y pullpush-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jacklenzotti-pullpush-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "pullpush-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jacklenzotti-pullpush-mcp --command npx --arg -y --arg pullpush-mcp
```

### Hermes

```yaml
mcp_servers:
  jacklenzotti-pullpush-mcp:
    command: "npx"
    args: ["-y", "pullpush-mcp"]
```

### Other

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

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 66, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 62, +12)

- [security regression] Known CVEs: partial → unverified
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Dependency health: partial → unverified
- [functional] First check of Schema quality: unverified

### 2026-08-01 (score 50, +26)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-07-31 (score 24, −19)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 43)

First indexed and scored.

## MCP tools (2)

### `search_comments` (~177 tokens)

Search Reddit comments. Supports filtering by subreddit, author, date range, and keyword search.

Input parameters:

- `after` (string): Return results after this date. Accepts epoch timestamp or relative date like '30d', '1y'
- `author` (string): Filter by author username
- `before` (string): Return results before this date. Accepts epoch timestamp or relative date like '30d', '1y'
- `q` (string): Search query - searches across all comment fields
- `size` (number): Number of results to return (default: 100, max: 100)
- `sort` (string): Sort order (default: desc)
- `sort_type` (string): Field to sort by (default: created_utc)
- `subreddit` (string): Filter by subreddit name (without r/ prefix)

### `search_submissions` (~325 tokens)

Search Reddit submissions (posts). Supports filtering by subreddit, author, date range, score, and keyword search.

Input parameters:

- `after` (string): Return results after this date. Accepts epoch timestamp or relative date like '30d', '1y'
- `author` (string): Filter by author username
- `before` (string): Return results before this date. Accepts epoch timestamp or relative date like '30d', '1y'
- `is_video` (boolean): Filter video posts
- `locked` (boolean): Filter locked posts
- `num_comments` (string): Filter by number of comments. Use >N, <N, or N for exact match
- `over_18` (boolean): Filter NSFW content (true = only NSFW, false = exclude NSFW)
- `q` (string): Search query - searches across all submission fields
- `score` (string): Filter by score. Use >N, <N, or N for exact match
- `selftext` (string): Search in submission body text only
- `size` (number): Number of results to return (default: 25, max: 100)
- `sort` (string): Sort order (default: desc)
- `sort_type` (string): Field to sort by (default: created_utc)
- `spoiler` (boolean): Filter spoiler posts
- `stickied` (boolean): Filter stickied posts
- `subreddit` (string): Filter by subreddit name (without r/ prefix)
- `title` (string): Search in submission titles only

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 62
- 2026-08-01: 50
- 2026-07-31: 24
- 2026-07-30: 43
- 2026-07-28: 43
- 2026-07-27: 43

## Links

- npm package: https://www.npmjs.com/package/pullpush-mcp
- Socket report: https://socket.dev/npm/package/pullpush-mcp
- Repository: https://github.com/jacklenzotti/pullpush-mcp
- Changelog RSS feed: https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jacklenzotti-pullpush-mcp/pullpush-mcp
