Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
REDDIT_PASSWORD | No | Your Reddit password (optional for authenticated operations) | |
REDDIT_USERNAME | No | Your Reddit username (optional for authenticated operations) | |
REDDIT_CLIENT_ID | No | Your Reddit API client ID obtained from Reddit's app preferences page | |
REDDIT_CLIENT_SECRET | No | Your Reddit API client secret obtained from Reddit's app preferences page |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_user_info | Get information about a Reddit user. |
get_top_posts | Get top posts from a subreddit. |
get_subreddit_info | Get information about a subreddit. |
get_trending_subreddits | Get currently trending subreddits. |
get_subreddit_stats | Get statistics about a subreddit. |
create_post | Create a new post in a subreddit. |
reply_to_post | Post a reply to an existing Reddit post. |
reply_to_comment | Post a reply to an existing Reddit comment. |
get_submission_by_url | Get a Reddit submission by its URL. |
get_submission_by_id | Get a Reddit submission by its ID. |
who_am_i | Get information about the currently authenticated user. |