publish_note
Publish articles to note.com by reading title, body text, and tags from Markdown files. Automatically posts content to your account using authentication state.
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"
}