/
by ai.smithery
Browse and manage Reddit posts, comments, and threads. Fetch user activity, explore hot/new/rising…
Server configuration and capabilities from the MCP manifest
Size: 5,020 bytes (1,255 tokens)
Tools Found: 9
Analysis ID: llomgnmg
Reddit User MCP Server - Access Reddit posts, comments, and interact with Reddit via MCP
Stars
Registry ID: e730a80f-42db-4f18-bed0-da3f63542ecf
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
Default Branch: main
Last Push: 9/14/2025
Open Issues: 0
Historical performance and growth metrics over time
{
"name": "Reddit User MCP",
"tags": [
"mcp",
"reddit",
"model-context-protocol",
"ai-assistant",
"reddable"
],
"tools": [
{
"name": "get_user_posts",
"description": "Fetch posts from a Reddit user",
"input_schema": {
"type": "object",
"required": [],
"properties": {
"limit": {
"type": "number",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Number of posts to fetch (1-100, default: 25)"
},
"username": {
"type": "string",
"description": "Reddit username without /u/. If not provided, uses authenticated user"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "get_user_comments",
"description": "Fetch comments from a Reddit user",
"input_schema": {
"type": "object",
"required": [],
"properties": {
"limit": {
"type": "number",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Number of comments to fetch (1-100, default: 25)"
},
"username": {
"type": "string",
"description": "Reddit username without /u/. If not provided, uses authenticated user"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "get_post_comments",
"description": "Fetch comments for a specific Reddit post",
"input_schema": {
"type": "object",
"required": [
"postId"
],
"properties": {
"postId": {
"type": "string",
"description": "Reddit post ID (alphanumeric string in URL)"
},
"subreddit": {
"type": "string",
"description": "Subreddit name for faster lookup (optional)"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "hide_comment",
"description": "Report a Reddit comment as spam (also hides it from your view)",
"input_schema": {
"type": "object",
"required": [
"commentId"
],
"properties": {
"commentId": {
"type": "string",
"description": "Reddit comment ID to report as spam"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "reply_to_comment",
"description": "Reply to a Reddit comment",
"input_schema": {
"type": "object",
"required": [
"commentId",
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Reply text (markdown supported)"
},
"commentId": {
"type": "string",
"description": "Reddit comment ID to reply to"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "post_comment",
"description": "Post a comment directly on a Reddit post",
"input_schema": {
"type": "object",
"required": [
"postId",
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Comment text (markdown supported)"
},
"postId": {
"type": "string",
"description": "Reddit post ID to comment on"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "get_hot_posts",
"description": "Fetch hot posts from a subreddit",
"input_schema": {
"type": "object",
"required": [
"subreddit"
],
"properties": {
"limit": {
"type": "number",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Number of posts to fetch (1-100, default: 25)"
},
"subreddit": {
"type": "string",
"description": "Subreddit name without /r/"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "get_new_posts",
"description": "Fetch new posts from a subreddit",
"input_schema": {
"type": "object",
"required": [
"subreddit"
],
"properties": {
"limit": {
"type": "number",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Number of posts to fetch (1-100, default: 25)"
},
"subreddit": {
"type": "string",
"description": "Subreddit name without /r/"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
},
{
"name": "get_rising_posts",
"description": "Fetch rising posts from a subreddit",
"input_schema": {
"type": "object",
"required": [
"subreddit"
],
"properties": {
"limit": {
"type": "number",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Number of posts to fetch (1-100, default: 25)"
},
"subreddit": {
"type": "string",
"description": "Subreddit name without /r/"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"isError": {
"type": "boolean"
}
}
}
}
],
"version": "1.0.0",
"categories": [],
"description": "Reddit User MCP Server - Access Reddit posts, comments, and interact with Reddit via MCP"
}Forks
Watchers
Contributors
Last Push: 9/14/2025
Open Issues: 0