get-my-notes
Retrieve your article list including drafts from note.com with filtering options by status and pagination controls.
Instructions
自分の記事一覧(下書きを含む)を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号(デフォルト: 1) | |
| perPage | No | 1ページあたりの表示件数(デフォルト: 20) | |
| status | No | 記事の状態フィルター(all:すべて, draft:下書きのみ, public:公開済みのみ) | all |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号(デフォルト: 1)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの表示件数(デフォルト: 20)",
"type": "number"
},
"status": {
"default": "all",
"description": "記事の状態フィルター(all:すべて, draft:下書きのみ, public:公開済みのみ)",
"enum": [
"all",
"draft",
"public"
],
"type": "string"
}
},
"type": "object"
}