search-all
Search across note.com for users, hashtags, and articles using keywords with customizable filters for context, sorting, and result count.
Instructions
note全体検索(ユーザー、ハッシュタグ、記事など)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 検索キーワード | |
| context | No | 検索コンテキスト(user,hashtag,noteなどをカンマ区切りで指定) | user,hashtag,note |
| mode | No | 検索モード(typeaheadなど) | typeahead |
| size | No | 取得する件数(最大5件) | |
| sort | No | ソート順(new: 新着順, popular: 人気順, hot: 急上昇) | hot |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"default": "user,hashtag,note",
"description": "検索コンテキスト(user,hashtag,noteなどをカンマ区切りで指定)",
"type": "string"
},
"mode": {
"default": "typeahead",
"description": "検索モード(typeaheadなど)",
"type": "string"
},
"query": {
"description": "検索キーワード",
"type": "string"
},
"size": {
"default": 10,
"description": "取得する件数(最大5件)",
"type": "number"
},
"sort": {
"default": "hot",
"description": "ソート順(new: 新着順, popular: 人気順, hot: 急上昇)",
"enum": [
"new",
"popular",
"hot"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}