get_frontpage_posts
Retrieve trending Reddit posts from the frontpage using a specified limit, facilitating quick access to popular content. Integrates with MCP Server Reddit for seamless Reddit API interaction.
Instructions
Get hot posts from Reddit frontpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of posts to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of posts to return (default: 10)",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}