esa_list_posts
Retrieve a paginated list of team posts with customizable sorting, filtering, and related data inclusion using the esa MCP Server interface.
Instructions
Get a list of posts in the team (with pagination support)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include | No | Related data to include in the response (e.g. 'comments,stargazers') | |
order | No | Sort order (desc, asc) | desc |
page | No | Page number to retrieve | |
per_page | No | Number of results per page (default: 20, max: 100) | |
q | No | Search query (see esa API documentation for details) | |
sort | No | Sort method (updated, created, number, stars, watches, comments, best_match) | updated |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Related data to include in the response (e.g. 'comments,stargazers')",
"type": "string"
},
"order": {
"default": "desc",
"description": "Sort order (desc, asc)",
"type": "string"
},
"page": {
"default": 1,
"description": "Page number to retrieve",
"type": "number"
},
"per_page": {
"default": 20,
"description": "Number of results per page (default: 20, max: 100)",
"type": "number"
},
"q": {
"description": "Search query (see esa API documentation for details)",
"type": "string"
},
"sort": {
"default": "updated",
"description": "Sort method (updated, created, number, stars, watches, comments, best_match)",
"type": "string"
}
},
"type": "object"
}