# Reddit — MCP server on mcp.ai > Reddit is a social news platform with user-driven communities (subreddits), offering content sharing, discussions, and viral marketing opportunities for brands By: mcp.ai · official Page: https://mcp.ai/reddit ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_reddit?ms=1781542200000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/reddit/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/reddit/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/reddit/skill.md Postman collection (v2.1): https://mcp.ai/reddit/postman.json ## Tools - reddit_create_reddit_post(url?: string, kind: string, text?: string, title: string, flair_id: string, subreddit: string) — Creates a new text or link post on a specified, existing reddit subreddit, optionally applying a flair. - reddit_delete_reddit_comment(id: string) — Deletes a reddit comment, identified by its fullname id, if it was authored by the authenticated user. - reddit_delete_reddit_post(id: string) — Permanently deletes a reddit post by its id, provided the authenticated user has deletion permissions for that post. - reddit_edit_reddit_comment_or_post(text: string, thing_id: string) — Edits the body text of the authenticated user's own existing comment or self-post on reddit; cannot edit link posts or titles. - reddit_get_user_flair(subreddit: string) — Fetches the list of available link flairs (i.e., post flairs, not user flairs) for a given subreddit. - reddit_post_reddit_comment(text: string, thing_id: string) — Posts a comment on reddit, replying to an existing and accessible submission (post) or another comment. - reddit_retrieve_post_comments(article: string) — Retrieves all comments for a reddit post given its article id (which must be for an existing, public post); nested replies within comments are returned as raw dictionaries requiring parsing. - reddit_retrieve_reddit_post(size?: integer, subreddit: string) — Retrieves the current hot posts from a specified, publicly accessible subreddit. - reddit_retrieve_specific_comment(id: string) — Retrieves detailed information for a specific reddit comment or post using its fullname. - reddit_search_across_subreddits(sort?: string, limit?: integer, restrict_sr?: boolean, search_query: string) — Searches reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict sr` is set to false. ## Links Docs: https://mcp.ai/docs/mcps/reddit Website: https://mcp.ai/mcps/reddit