get-user-notes
Retrieve a user's published articles from note.com by providing their username, with optional pagination support for browsing through multiple pages of content.
Instructions
ユーザーの記事一覧を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | ユーザー名 | |
| page | No | ページ番号 |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号",
"type": "number"
},
"username": {
"description": "ユーザー名",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}