mcp-reddit
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fetch_reddit_hot_threadsB | Fetch hot threads from a subreddit Args: subreddit: Name of the subreddit limit: Number of posts to fetch (default: 10) Returns: Human readable string containing list of post information |
| fetch_reddit_post_contentB | Fetch detailed content of a specific post Args: post_id: Reddit post ID comment_limit: Number of top level comments to fetch comment_depth: Maximum depth of comment tree to traverse Returns: Human readable string containing post content and comments tree |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one fetches a list of hot threads from a subreddit, while the other retrieves detailed content for a specific post. There is no overlap in functionality, making it easy for an agent to select the appropriate tool based on whether it needs overview information or detailed content.
Both tools follow a consistent verb_noun pattern with 'fetch_reddit_' prefix, using snake_case throughout. The naming is predictable and readable, with no deviations in style or convention across the tool set.
With only 2 tools, the server feels thin for a Reddit integration. While the tools cover basic fetching of posts and content, there are likely gaps in functionality such as posting, voting, or searching, which limits the server's utility for comprehensive Reddit interactions.
The tool surface is severely incomplete for a Reddit domain. It only supports fetching operations (read-only), with no ability to create, update, or delete content (e.g., posting, commenting, or voting). This will cause agent failures when trying to perform common Reddit actions beyond simple retrieval.