Get the current subscriber count for your Substack publication. Returns `precision`: 'exact' when the API reports a true count, 'approximate' when only Substack's rounded value is available (the real number is that or higher — render it hedged, e.g. '1,000+'), or 'unavailable' with count -1. Never treat an approximate value as exact.
List published posts with pagination. Returns title, date, slug, and URL for each post.
List draft posts. Returns title, creation date, and audience for each draft.
Get the full content of a published post by ID. Returns title, body HTML, metadata.
Get the full content of a draft post by ID. Returns title, body, metadata.
Get comments on a published post. Returns commenter name, comment body, date, and reaction counts.
List your publication's sections (categories). Returns each section's id and name. Use a section id as `section_id` when creating or updating a draft to file it under that section.
Get performance stats (views, emails sent/delivered/opened, signups, subscribes, estimated value, comments, reactions) for a published post by ID. Substack has no per-post stats endpoint, so this searches your 500 most recent published posts for the ID; returns a not-found note if it isn't among them.
List posts scheduled for future publication, soonest first. Read-only visibility into what's queued — scheduling itself is done in Substack's editor (this server does not schedule, publish, or delete long-form posts). Returns id, title, audience, and scheduled time (`trigger_at`).
Create a new draft post. Accepts markdown body which is converted to Substack's format. Does NOT publish — creates a draft only.
Update an existing draft post. Only works on unpublished drafts. Accepts markdown body.
Upload an image to Substack's CDN. Provide exactly one of `image_base64` (a base64 data URI) or `image_path` (a local file path). Returns a hosted image URL that is publicly fetchable by anyone with the link (an unlisted asset — not attributed to you or added to your feed).
+2 more tools listed on main page