get-category-notes
Retrieve articles from a specific category on note.com with options to sort by newest or trending content and navigate through pages.
Instructions
カテゴリーに含まれる記事一覧を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | カテゴリー名(例: tech) | |
| page | No | ページ番号 | |
| sort | No | ソート方法(new: 新着順, trend: 人気順) | new |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "カテゴリー名(例: tech)",
"type": "string"
},
"page": {
"default": 1,
"description": "ページ番号",
"type": "number"
},
"sort": {
"default": "new",
"description": "ソート方法(new: 新着順, trend: 人気順)",
"enum": [
"new",
"trend"
],
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}