esa MCP Server

by kajirita2002
Verified

esa_list_posts

Get a list of posts in the team (with pagination support)

Input Schema

NameRequiredDescriptionDefault
includeNoRelated data to include in the response (e.g. 'comments,stargazers')
orderNoSort order (desc, asc)desc
pageNoPage number to retrieve
per_pageNoNumber of results per page (default: 20, max: 100)
qNoSearch query (see esa API documentation for details)
sortNoSort 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" }