save_draft
Save draft posts to note.com by reading title, body content, and tags from Markdown files, enabling automated content preparation for publishing.
Instructions
note.comに下書きを保存します。Markdownファイルからタイトル、本文、タグを読み取り、下書きとして保存します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
markdown_path | Yes | Markdownファイルのパス(タイトル、本文、タグを含む) | |
screenshot_dir | No | スクリーンショット保存ディレクトリ(オプション) | |
state_path | No | note.comの認証状態ファイルのパス(デフォルト: /app/.note-state.json) | |
thumbnail_path | No | サムネイル画像のパス(オプション) | |
timeout | No | タイムアウト(ミリ秒、デフォルト: 120000) |
Input Schema (JSON Schema)
{
"properties": {
"markdown_path": {
"description": "Markdownファイルのパス(タイトル、本文、タグを含む)",
"type": "string"
},
"screenshot_dir": {
"description": "スクリーンショット保存ディレクトリ(オプション)",
"type": "string"
},
"state_path": {
"description": "note.comの認証状態ファイルのパス(デフォルト: /app/.note-state.json)",
"type": "string"
},
"thumbnail_path": {
"description": "サムネイル画像のパス(オプション)",
"type": "string"
},
"timeout": {
"description": "タイムアウト(ミリ秒、デフォルト: 120000)",
"type": "number"
}
},
"required": [
"markdown_path"
],
"type": "object"
}