Back to tools

list_articles

List articles with pagination and optional filtering by category, tag, or status.

Schema and Policy
{
  "name": "list_articles",
  "description": "List articles with pagination and optional filtering by category, tag, or status.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "page": {
        "type": "number"
      },
      "limit": {
        "type": "number"
      },
      "category": {
        "type": "string"
      },
      "tag": {
        "type": "string"
      },
      "status": {
        "type": "string",
        "enum": [
          "draft",
          "published",
          "archived"
        ]
      }
    }
  },
  "category": "Content",
  "authRequired": false,
  "mutability": "read",
  "status": "active"
}