# Pa1m Reddit MCP server

Pay-per-call Reddit agent: post reading, voting, commenting, DM and OAuth flows. x402, USDC on Base.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-retampweb-pa1m-reddit

## Install
- Endpoint: https://reddit.hypa1m.xyz/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://reddit.hypa1m.xyz/mcp

## Tools
- get_posts - Subreddit Posts — $0.01

Fetch posts from any subreddit with sorting and pagination. No Reddit account needed. Sorting options: hot (trending now), new (most recent), top (most upvoted), rising (gaining momentum), controversial (most debated), best (Reddit's personalized ranking). Use t= parameter (hour/day/week/month/year/all) with sort=top or sort=controversial. Paginate by passing the 'after' cursor from the previous response. Up to 100 posts per call. Example: GET /posts?subreddit=MachineLearning&sort=top&t=week&limit=50

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- search_posts - Search Reddit Posts — $0.01

Search Reddit posts globally or restrict to a specific subreddit. Mirrors the Posts tab on reddit.com/search. Sorting: relevance (default — highest upvoted may outrank closest match on broad queries), new (strict chronological), hot, top, comments. Tip: use sort=new with t=week for recent topical results; sort=relevance for best match. Set nsfw=true to include adult content. Paginate with 'after' cursor. Example: GET /search?q=Claude+API&sort=new&t=month&limit=25

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- get_comments_by_permalink - Post Comments by Permalink — $0.01

Fetch the full comment tree for a Reddit post using its permalink URL. Returns top-level comments with nested replies, upvote counts, and author metadata. Use this when you have the full Reddit URL. Permalink format: /r/{subreddit}/comments/{post_id}/{title}/ Example: GET /comments?permalink=/r/python/comments/1abc123/my_post_title/

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- get_comments_by_id - Post Comments by Post ID — $0.01

Fetch the full comment tree for a Reddit post using its short alphanumeric post ID. Same response as the permalink endpoint — use this when you have the ID, not the full URL. Post IDs can be extracted from Reddit URLs: reddit.com/r/x/comments/{post_id}/... Example: GET /comments/1abc123

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- get_user - User Profile — $0.01

Fetch a Reddit user's public profile. Returns link karma, comment karma, account age, gold/mod/employee status flags, verified email flag, icon URL, and profile description. Example: GET /user/spez

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- get_user_comments - User Comment History — $0.01

Fetch a Reddit user's recent comments. Each item includes subreddit, upvote score, parent post title, comment body, and creation timestamp. Sort by new (default), top, or controversial. Paginate with the 'after' cursor. Example: GET /user/spez/comments?sort=top&limit=10

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- login - Reddit Login — $0.05

Authenticate a Reddit account and receive session cookies needed for write operations (comment, vote, DM). Cookies are valid until revoked by Reddit. For accounts with 2FA, pass totp_secret to generate the TOTP code automatically. Body: {"username": "...", "password": "...", "totp_secret": "..." (optional)}

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- post_comment - Post Comment — $0.05

Submit a top-level comment on a Reddit post. Requires session cookies from POST /login (reddit_session + loid fields). Body: {"post_url": "https://reddit.com/r/...", "text": "...", "reddit_session": "...", "loid": "..."}

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- vote - Vote — $0.02

Upvote or downvote a Reddit post or comment. thing_id format: t3_xxx for posts, t1_xxx for comments. direction: up | down | none (none removes your vote). Requires session cookies from POST /login. Body: {"thing_id": "t3_abc123", "direction": "up", "reddit_session": "...", "loid": "..."}

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp
- send_dm - Send Direct Message — $0.10

Send a private message to a Reddit user. Pass to_username (e.g. 'spez') or to_user_t2 (Reddit internal ID like t2_xxx). Requires session cookies from POST /login. Body: {"to_username": "spez", "message": "Hello!", "reddit_session": "...", "loid": "..."}

### Responses:

**200**: Successful Response (Success Response)
Content-Type: application/json Endpoint: https://reddit.hypa1m.xyz/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.retampweb
- Version: 1.0.0
- Runtime: Sse
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 27, 2026
- Source: https://registry.modelcontextprotocol.io
