CiteRocket MCP
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CITEROCKET_API_KEY | Yes | Your API key, sent as Authorization: Bearer on every call. |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_postsC | Fetch posts from a subreddit |
| get_searchA | Search posts across Reddit |
| get_sub_by_name_topC | A subreddit's top posts |
| get_sub_by_name_infoA | Subreddit metadata, rules, moderators |
| get_commentsB | A post's full comment tree |
| get_post_by_idA | Fetch one post by id |
| get_user_by_nameB | User profile and karma |
| get_user_by_name_commentsC | A user's recent comments |
| get_user_by_name_statusA | Account status / shadowban check |
| get_search_communitiesC | Search communities |
| get_search_commentsC | Search comments |
| get_search_mediaC | Search media |
| get_search_usersC | Search users |
| get_cite_rocket_overviewA | Return member identity, plan access, spendable credits, lifetime usage and billing history in one free request |
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 14 tools
Most tools target clearly distinct resources (posts, comments, users, subreddits), but get_posts and get_sub_by_name_top both return subreddit posts, and get_search could be confused with the more specific get_search_* variants. Descriptions mostly resolve the ambiguity.
All tools consistently use the get_ prefix with snake_case, which is predictable. Some names like get_search and get_sub_by_name_top are slightly awkward or less verb-driven, but the overall pattern is coherent.
14 tools is on the higher end but reasonable for a Reddit data-access server, especially with separate search endpoints for posts, comments, communities, media, and users. Each tool has a distinct enough role that the count feels justified.
The server covers the main read-only Reddit workflows: posts, comments, subreddits, users, and search. However, there is no tool for a user's submitted posts (only comments), and subreddit-specific retrieval is limited to top posts rather than hot/new or other common listings.