Trail Hub / @omneity / reddit
O

@omneity/reddit

@omneity
42 downloads

Search Reddit and get posts, comments and other content

Herd

What is Herd?

Herd is a powerful browser automation platform that lets you connect any AI like ChatGPT, Claude, or even Cursor to your favorite websites. This Trail is a pre-built automation  for reddit.com. An MCP (Model Context Protocol) server exposes standard tools to your Agent to read from and interact with reddit.com via your browser securely.

With Herd and this trail, your agent can run:
  • search-reddit: Search for posts on Reddit based on a keyword
  • frontpage-reddit: Get posts from the Reddit frontpage
  • new-posts-reddit: Get new posts from Reddit
See all actions

Trail Details

Selected Version
v1.0.1 (2 versions available)
Last Updated
4/10/2025
Downloads
42

Quick Actions - MCP compatible

Install Herd browser extension to connect your AI tools.

Supported Websites

Herd is not affiliated with reddit.com and is not endorsing its content. Herd makes websites accessible over MCP and API, but never hosts any content. Make sure to accept the respective terms of service before using this trail.

All trademarks reserved to their respective owners.

Installation and Usage

Quick Run

herd trail server @omneity/reddit

SDK Implementation

Usage Example
import { HerdClient } from '@monitoro/herd';

// Initialize Herd client (use your own API key)
const herd = new HerdClient({ token: 'YOUR_HERD_API_KEY' });

// Run the 'search-reddit' action
const result = await herd.runTrail('@omneity/reddit@1.0.1', {
	actionName: 'search-reddit',
	params: {
		keyword: "String"
	}
});

console.log('Trail result:', result);

Available Actions

All the following actions for @omneity/reddit are accessible via the built-in MCP server, CLI, REST API as well as programmatically via the SDK.

search-reddit

Search for posts on Reddit based on a keyword

Parameters

Name Type Description Required
keyword String The keyword to search for Yes

frontpage-reddit

Get posts from the Reddit frontpage

This action takes no parameters.

new-posts-reddit

Get new posts from Reddit

This action takes no parameters.

post-comments-reddit

Get comments from a specific Reddit post

Parameters

Name Type Description Required
postLink String The URL path to the post Yes

profile-posts-reddit

Get posts by a specific Reddit user

Parameters

Name Type Description Required
profileName String The Reddit username Yes

comment-replies-reddit

Get replies to a specific Reddit comment

Parameters

Name Type Description Required
commentLink String The URL path to the comment Yes

subreddit-posts-reddit

Get posts from a specific subreddit

Parameters

Name Type Description Required
subredditName String The subreddit name Yes

profile-comments-reddit

Get comments by a specific Reddit user

Parameters

Name Type Description Required
profileName String The Reddit username Yes