Skip to main content
You’ll go from zero to a real, server-acknowledged blog post in five steps. The last step is optional but unlocks the part our customers love most: AI codegen tools that generate Neural Draft-native code without you teaching them.
1

Create a project

Sign up at app.neuraldraft.io/register. The form takes ~90 seconds and asks for the bare minimum: project name, industry, brand voice, brand colors, target languages, and target audience. These six fields populate your brand context — the canonical resource every AI tool reads before it generates anything.
Already have a project? Skip ahead to step 2.
2

Get your API key

From the dashboard, open Settings → API keys → Create key. Pick a name (e.g. dev-laptop) and the scopes you need.Your key looks like this:
The prefix tells you the environment: ndsk_live_ is production, ndsk_test_ is the sandbox. Keys are shown once — copy them straight into your secret manager.
Never commit a key to git. Use environment variables, a secret manager, or your platform’s encrypted env (Vercel, Fly, Render). Compromised keys can be rotated from the dashboard at any time.
Now export it for the rest of this guide:
3

Install the SDK (recommended)

Every endpoint is also a plain HTTP call — fetch, axios, cURL all work — but the official TypeScript SDK gives you typed inputs, typed responses, and a jobs.poll() helper for the async pipelines.
The SDK targets Node 20+, Bun, and modern browsers (server-side; never ship the API key to the client). Python and PHP SDKs are on the roadmap — until they land, use cURL or requests against the OpenAPI spec at https://api.neuraldraft.io/v1/openapi.yaml.
4

Make your first call

A round trip: verify the key, then create a draft blog post.
Expected response:
Open app.neuraldraft.io and your draft is already there, ready to edit or publish. You’re done with the API quickstart.
5

Optional — install the MCP server

This is the part that unlocks the magic: your editor’s AI starts generating Neural Draft-native code automatically.Add the MCP server to Claude Code in one command:
Or paste the snippet into .cursor/mcp.json for Cursor:
Restart your editor. Now ask the AI:
“Generate a hero section for this site and register it with Neural Draft.”
Watch it read brand://current for your colors and voice, generate the HTML with data-translate keys baked in, and call register_component so the section appears in your admin as editable. No glue code.Full setup (Claude Code, Cursor, Continue, plus the Lovable / v0 / Bolt workaround) is on the MCP setup page.

What’s next

Authentication

Scopes, rotation, environment separation, and the full list of 401/403 failure modes.

Pricing & credits

What every operation costs and what happens when you hit zero.

The five pillars

CMS, blog, social, booking, commerce — what each one gives you and the workflows we see most often.

Webhooks

Skip polling. Get an HTTP POST every time something changes.