reddirect
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_sessionA | Check if connected to a Reddit account. Shows username if authorized, or anonymous if not. Run 'authorize' tool to connect your account for write operations. |
| authorizeA | One-time authorization: opens Reddit in your browser to connect your account. You click 'Allow', and reddirect gets permanent access. No API keys or passwords stored. Only needs to be done once. |
| browse_subredditA | Browse posts from a subreddit with sort options (hot, new, top, rising, controversial). For top and controversial, you can specify a time range. |
| get_postA | Fetch a Reddit post and its comments. Returns comments as a flat array with depth and parent_id fields. |
| get_subreddit_infoB | Get subreddit information including description, rules, subscriber count, and whether it is NSFW. |
| get_user_profileA | Get a Reddit user's public profile including karma breakdown and account age. |
| search_redditB | Search Reddit globally or within a specific subreddit. Returns matching posts. |
| create_postA | Create a new text or link post in a subreddit. Returns the permalink of the created post. |
| replyC | Reply to a Reddit post or comment. Provide a full URL. |
| edit_contentA | Edit your own Reddit post or comment. Provide the URL of the content to edit. |
| delete_contentA | Delete your own Reddit post or comment. |
| voteB | Upvote, downvote, or remove your vote on a single Reddit post or comment. One vote per call. |
| save_itemB | Save a Reddit post or comment to your saved items list. |
| unsave_itemB | Remove a Reddit post or comment from your saved items list. |
| get_saved_itemsB | Get your saved Reddit posts and comments. |
| get_inboxA | Get your Reddit inbox messages including unread, mentions, and comment replies. |
| mark_inbox_readB | Mark all unread inbox messages as read. |
| get_subscriptionsA | List your subscribed subreddits. |
| subscribe_subredditB | Subscribe to a subreddit. |
| unsubscribe_subredditB | Unsubscribe from a subreddit. |
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 20 tools
Each tool targets a distinct action or resource (e.g., authorize, browse, create, delete, vote, save). No two tools have overlapping purposes; even similar operations like subscribe/unsubscribe are clearly differentiated.
All tool names follow a consistent verb_noun pattern in lowercase snake_case (e.g., browse_subreddit, create_post, get_inbox). Even single-word names like 'authorize' and 'reply' fit the verb-first pattern.
With 20 tools, the server covers a wide range of Reddit operations without being bloated. The count is appropriate for a full-featured Reddit client, balancing usability and coverage.
The server covers core CRUD operations, voting, saving, searching, and inbox management. Missing a tool to list the user's own posts or comments, but this is a minor gap given the overall breadth.