get_blog_posts
Retrieve blog posts in JSON format from blog.duyet.net, specifying the number of posts (1-20) to fetch.
Instructions
Get a list of blog posts from blog.duyet.net in JSON format
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"
}