create_note
Create short-form posts for Substack publications to share updates, thoughts, and content with your audience directly through conversation.
Instructions
Create a new Substack note (short-form post)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text content of the note |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text content of the note",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}