list_posts
List the most recent posts on the Radixia blog (AI, serverless, open source, cloud). Returns title, slug, date, tags and excerpt for each.
Parameters2
| limit | number | optional | How many posts to return |
| tag | string | optional | Filter by tag slug, e.g. 'ai', 'serverless', 'e-commerce' |
Raw schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"minimum": 1,
"maximum": 50,
"default": 15,
"description": "How many posts to return"
},
"tag": {
"type": "string",
"description": "Filter by tag slug, e.g. 'ai', 'serverless', 'e-commerce'"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}