Publish Markdown from your terminal.
The JotBird command line interface (CLI) is all it takes to go from Markdown file to shareable link. Three commands. No browser needed. Used by developers, educators, and researchers worldwide.
$ jotbird login
Open jotbird.com/account/api-key and paste your key.
Token: ••••••••••••
✓ Logged in successfully.
$ jotbird publish meeting-notes.md
✨ Published → share.jotbird.com/bright-calm-meadow
$ jotbird list
bright-calm-meadow Meeting Notes
share.jotbird.com/bright-calm-meadow
How it works
From install to published link in under a minute. Perfect for LLM workflows, CI pipelines, and Markdown-first publishing.
Install
npm install -g jotbirdAuthenticate
jotbird login to link your account. One-time setup, takes seconds. Don't have an account? Create one for free.Publish
jotbird publish file.md to get a shareable link. Update anytime with the same command.Unlike gists, pastebins, and wikis, JotBird links are readable, unlisted, and designed to be shared — not browsed. Noindex by default.
How it looks
Every published page gets a responsive URL — no ads, no tracking, no clutter, just your content. Markdown is rendered with proper typography, code blocks, headings, and lists. Here's an example.

$ jotbird login
Open jotbird.com/account/api-key and paste your key.
Token: ••••••••••••
✓ Logged in successfully.
$ jotbird publish meeting-notes.md
✨ Published → share.jotbird.com/bright-calm-meadow
$ jotbird list
bright-calm-meadow Meeting Notes
share.jotbird.com/bright-calm-meadow
Ready to publish Markdown from the terminal?
Create a free JotBird account to get your API key and start publishing.
CLI Documentation
Everything you need to know about the JotBird CLI.
Setup
Installation
Install the JotBird CLI globally with npm. Requires Node.js 18 or later.
npm install -g jotbirdVerify the installation:
jotbird --versionSetup
Authentication
Link your JotBird account by running the login command. This is a one-time setup.
jotbird loginThe CLI will open your browser to authenticate. Once you sign in, the CLI automatically receives your API key — no copy-pasting required.
Your token is stored locally on your machine. You won't need to log in again unless you revoke the key.
Command
Publish
Publish a new Markdown document or update an existing one. Free accounts get 90-day links. Pro makes links permanent.
jotbird publish meeting-notes.mdSupported file types: .md, .markdown, .mdx, .txt, .text, and files without an extension (e.g. README). You can also pipe any Markdown content via stdin (see below).
The CLI creates a .jotbird file in your working directory to track which files map to which published slugs. Running the same command again updates the existing document in place — same URL, fresh content.
# First publish → creates new document
jotbird publish README.md
✨ Published → share.jotbird.com/bright-calm-meadow
# Second publish → updates in place
jotbird publish README.md
✓ Updated → share.jotbird.com/bright-calm-meadowImage uploads are not supported. Markdown image references (e.g. ) will render only if they point to externally-hosted images.
Command
List
View all your published documents.
jotbird list
bright-calm-meadow Meeting Notes
share.jotbird.com/bright-calm-meadow
swift-red-fox README
share.jotbird.com/swift-red-foxDocuments published via the CLI also appear in the web app, where you can view them and share the link. Editing is only available through the CLI — the web app shows CLI-published documents as read-only.
Command
Remove
Permanently delete a document from your account. This removes the public URL, stored content, and all associated data. You can pass either the original filename or the slug.
jotbird remove meeting-notes.md
jotbird remove bright-calm-meadowPermanent action
This permanently deletes the document and link. There is no way to recover them.
Advanced
Piping from stdin
You can pipe Markdown directly into the CLI without a file. Useful for scripts and CI pipelines.
cat notes.md | jotbird publish
echo "# Quick note" | jotbird publishWhen publishing from stdin, the CLI won't track a file mapping — each publish creates a new document.
The JotBird CLI is open source. View on GitHub