Reddit MCP

MIT License
6
  • Apple
from .get_submission import get_submission from .get_subreddit import get_subreddit from .get_comments import get_comments_by_submission, get_comment_by_id from .search_posts import search_posts from .search_subreddits import search_subreddits __all__ = [ "get_submission", "get_subreddit", "get_comments_by_submission", "get_comment_by_id", "search_posts", "search_subreddits", ] # Registry of all available tools tools = [ get_submission, get_subreddit, get_comments_by_submission, get_comment_by_id, search_posts, search_subreddits, ]
ID: braoypt6vc