WebSim Explorer
list_trending_projects
Get a list of trending WebSim projects. Perfect for 'Show me trending projects' or 'What are the popular projects?' questions. Supports pagination and filtering by time range.
Remote gigachadtrey/websimm
Other tools also called list_trending_projects?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"feed": {
"enum": [
"trending",
"popular",
"new"
],
"type": "string",
"default": "trending",
"description": "Type of feed to fetch"
},
"limit": {
"type": "number",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Number of projects to return (1-100, default: 20)"
},
"range": {
"enum": [
"hour",
"day",
"week",
"month",
"all"
],
"type": "string",
"default": "day",
"description": "Time range for trending calculation"
},
"offset": {
"type": "number",
"default": 0,
"minimum": 0,
"description": "Number of projects to skip for pagination (default: 0)"
}
}
}