list_blog_posts
Retrieve recent blog posts from Duyet's blog in JSON format, allowing easy integration or access. Specify the number of posts (1-20) to fetch for focused results.
Instructions
Get a list of blog posts from blog.duyet.net in JSON format (legacy alias for get_blog_posts)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of blog posts to retrieve (1-20, default: 5) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 5,
"description": "Number of blog posts to retrieve (1-20, default: 5)",
"maximum": 20,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}