get-membership-notes
Retrieve membership article lists from note.com using a membership key to access and browse published content with pagination support.
Instructions
メンバーシップの記事一覧を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| membershipKey | Yes | メンバーシップキー(例: fed4670a87bc) | |
| page | No | ページ番号 | |
| perPage | No | ページあたりの記事数 |
Input Schema (JSON Schema)
{
"properties": {
"membershipKey": {
"description": "メンバーシップキー(例: fed4670a87bc)",
"type": "string"
},
"page": {
"default": 1,
"description": "ページ番号",
"type": "number"
},
"perPage": {
"default": 20,
"description": "ページあたりの記事数",
"type": "number"
}
},
"required": [
"membershipKey"
],
"type": "object"
}