search-notes
Search note.com articles using keywords with options to filter by date, popularity, or trending content and control result quantity.
Instructions
記事を検索する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 検索キーワード | |
| size | No | 取得する件数(最大20) | |
| start | No | 検索結果の開始位置 | |
| sort | No | ソート順(new: 新着順, popular: 人気順, hot: 急上昇) | hot |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "検索キーワード",
"type": "string"
},
"size": {
"default": 10,
"description": "取得する件数(最大20)",
"type": "number"
},
"sort": {
"default": "hot",
"description": "ソート順(new: 新着順, popular: 人気順, hot: 急上昇)",
"enum": [
"new",
"popular",
"hot"
],
"type": "string"
},
"start": {
"default": 0,
"description": "検索結果の開始位置",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}