get_subreddit_info
Retrieve detailed information about a specific subreddit, such as description, rules, and activity metrics, using the public Reddit API through the MCP Server Reddit.
Instructions
Get information about a subreddit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subreddit_name | Yes | Name of the subreddit (e.g. 'Python', 'news') |
Input Schema (JSON Schema)
{
"properties": {
"subreddit_name": {
"description": "Name of the subreddit (e.g. 'Python', 'news')",
"type": "string"
}
},
"required": [
"subreddit_name"
],
"type": "object"
}