article
Retrieve articles from Zenn.dev by specifying author, topic, order, page, or count using Zenn MCP Server’s API for streamlined content fetching.
Instructions
Fetch articles from Zenn.dev
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of articles per page. Default: 48 | |
order | No | Order of the articles. Choose from latest or oldest | |
page | No | Page number of the articles. Default: 1 | |
topicname | No | Topic name of the article | |
username | No | Username of the article author |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of articles per page. Default: 48",
"type": "integer"
},
"order": {
"description": "Order of the articles. Choose from latest or oldest",
"enum": [
"latest",
"oldest"
],
"type": "string"
},
"page": {
"description": "Page number of the articles. Default: 1",
"type": "integer"
},
"topicname": {
"description": "Topic name of the article",
"type": "string"
},
"username": {
"description": "Username of the article author",
"type": "string"
}
},
"required": [],
"type": "object"
}