user_analysis
Analyze Reddit user activity patterns, posting history, karma statistics, and top subreddits to understand behavior and engagement trends.
Instructions
Analyze a Reddit user's posting history, karma, and activity patterns. Returns posts, comments, and statistics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comments_limit | No | Number of recent comments to include (0-100, default: 10) | |
posts_limit | No | Number of recent posts to include (0-100, default: 10) | |
time_range | No | Period to analyze: "day", "week", "month", "year", "all". Note: "all" returns newest content, others return top-scored content from that period | |
top_subreddits_limit | No | Number of most-active subreddits to list (1-50, default: 10) | |
username | Yes | Reddit username without u/ prefix (e.g., "spez", not "u/spez") |
Input Schema (JSON Schema)
{
"properties": {
"comments_limit": {
"description": "Number of recent comments to include (0-100, default: 10)",
"type": "number"
},
"posts_limit": {
"description": "Number of recent posts to include (0-100, default: 10)",
"type": "number"
},
"time_range": {
"description": "Period to analyze: \"day\", \"week\", \"month\", \"year\", \"all\". Note: \"all\" returns newest content, others return top-scored content from that period",
"enum": [
"day",
"week",
"month",
"year",
"all"
],
"type": "string"
},
"top_subreddits_limit": {
"description": "Number of most-active subreddits to list (1-50, default: 10)",
"type": "number"
},
"username": {
"description": "Reddit username without u/ prefix (e.g., \"spez\", not \"u/spez\")",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}