post-comment
Add comments to note.com articles by providing the article ID and comment text to engage with content and participate in discussions.
Instructions
記事にコメントを投稿する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteId | Yes | 記事ID | |
| text | Yes | コメント本文 |
Input Schema (JSON Schema)
{
"properties": {
"noteId": {
"description": "記事ID",
"type": "string"
},
"text": {
"description": "コメント本文",
"type": "string"
}
},
"required": [
"noteId",
"text"
],
"type": "object"
}