Trusted by 4,200+ documentation sites worldwide

Your documentation,
built from code

Saedesk is a docs-as-code platform that transforms your MDX files into production-ready documentation sites. Push to GitHub and deploy globally in seconds — with AI-powered search, real-time analytics, and customizable themes built in from day one.

$npx create-saedesk my-docs
4,200+
Sites deployed
< 2s
Average build
99.9%
Uptime SLA
300+
Edge locations
saedesk terminal

Trusted by developer-first teams worldwide

StreamBaseNovalinkArclineDevaultLatticePixelForgeHyperionCorestackStreamBaseNovalinkArclineDevaultLatticePixelForgeHyperionCorestack

What teams are saying

Build time: 45 min to 2s

Saedesk cut our documentation build time from 45 minutes to under 2 seconds. The AI search reduced our support tickets significantly. Our developer relations team can now ship docs updates as fast as they ship code.

HoDR
Head of Developer Relations
Series B SaaS company
400 pages migrated in 2 days

We migrated 400+ pages from our old wiki in a single weekend. The MDX workflow feels natural to engineers, the themes look great out of the box, and pull request previews mean our whole team can review docs changes before they go live.

EM
Engineering Manager
Developer tools startup
Found critical content gaps

The analytics dashboard gave us visibility we never had before. We discovered that our most-visited page had a broken code example — something we had missed for months. The insights alone justified the switch.

VoP
VP of Product
API-first platform

Platform Features

Everything your documentation needs, nothing it doesn't

Saedesk ships with dozens of features across writing, design, search, analytics, and developer experience — all included in every plan. No plugins to install, no third-party integrations to configure. Every feature is built to work together seamlessly.

Instant Git-Powered Deploys

Every push to your GitHub repository triggers an automatic build. Your documentation compiles, optimizes images, generates a search index, and deploys to the global CDN — all in under two seconds. No CI/CD configuration required.

$ git push origin main
Building 42 MDX pages...
Generating search index...
Optimizing images (18 files)...
Deployed to docs.yoursite.com
> Build completed in 1.8s

AI-Powered Search

Let readers ask questions in natural language. Saedesk indexes every page, heading, and code block to surface precise answers instantly. Supports follow-up questions, code snippet extraction, and automatic context from related pages.

How do I configure webhooks?
AI Answer: Navigate to Settings and then Webhooks. Click "Add Endpoint," enter your URL, and select the events you want to subscribe to. See the Webhooks guide for payload formats and retry logic.

Professionally Designed Themes

Three themes — Aurora, Prism, and Zenith — each offering dark and light modes, custom color scales, and full typographic control. Switch themes in one line of config.

Aurora

Prism

Zenith

Built-in Analytics Dashboard

Track page views, unique visitors, popular pages, traffic sources, and search queries. Privacy-first — no third-party scripts and no cookie banners needed. Export raw data any time.

Page views+47% this month
Jan
Dec

Global Edge Network

Every deploy is cached across 300+ edge locations worldwide. Fast TTFB no matter where your readers are. Automatic SSL, HTTP/3, and image optimization.

US East — 12ms
EU West — 24ms
Asia Pacific — 38ms

25+ Built-in Components

Callouts, tabs, code blocks, steps, cards, accordions, API reference panels, and more. Use them directly in MDX — no imports, no setup. Fully accessible and theme-aware.

<Callout />
<Tabs />
<CodeBlock />
<Steps />
<Card />
<Accordion />
Plus dozens more:Git-based workflowHot module reloadLLM-ready outputCustom domainsFull CSS controlMDX + ReactSOC 2 compliantOpenAPI importVersioned docsVisual editorResponsive preview

How It Works

From MDX to production in four steps

Saedesk is designed around a docs-as-code workflow that developers already know and love. Write documentation alongside your source code, review it through pull requests, and deploy it automatically on every merge. No CMS logins, no manual publishing steps, no context switching.

01

Write in MDX

Author documentation in MDX — markdown with full React component support. Use 25+ built-in components like Callouts, Steps, CodeBlocks, Tabs, and API reference panels directly in your content. No imports needed, everything is globally available.

MDX gives you the expressiveness of React inside the simplicity of Markdown. Write prose naturally, then drop in interactive components when you need them. Saedesk handles syntax highlighting for 100+ languages, automatic table of contents generation, and cross-page linking.

02

Push to GitHub

Every push to your configured branch triggers an automatic build pipeline. Saedesk compiles your MDX, optimizes images, generates a search index, runs broken-link detection, and deploys the result to the global CDN.

Pull request previews are generated automatically so your team can review documentation changes before they go live. Branch-based environments let you test in isolation. Build logs are streamed in real time to your dashboard.

03

Deploy globally

Your documentation site is live on a global edge network spanning 300+ locations. Fast time-to-first-byte regardless of reader location. Automatic SSL, HTTP/3, Brotli compression, and image optimization are included.

Custom domains connect in minutes with automatic certificate provisioning. Atomic deployments ensure zero-downtime updates. Instant rollbacks let you revert to any previous build with a single click.

04

Enhance with AI

Once deployed, Saedesk automatically indexes every page, heading, code block, and table to power AI search. Readers can ask natural-language questions and get precise, context-aware answers with source citations.

The AI search supports follow-up questions, understands code examples, and can extract relevant snippets from across your documentation. It learns from your content structure and improves over time. LLM-ready output makes your docs discoverable by AI assistants.

docs/authentication.mdx
1---
2title: Authentication
3description: Secure your API with token-based auth
4---
5 
6import { Callout, Steps, CodeBlock } from '@saedesk/ui'
7 
8# Authentication
9 
10Saedesk APIs use **Bearer tokens** for authentication.
11Every request must include a valid token in the
12Authorization header.
13 
14<Callout type="warning">
15 Never expose your API key in client-side code.
16 Use environment variables and server-side proxies.
17</Callout>
18 
19<Steps>
20 <Step title="Generate an API key">
21 Navigate to **Settings → API Keys** and click
22 "Create Key." Choose the scopes you need.
23 </Step>
24 
25 <Step title="Add it to your environment">
26 Store the key in your `.env.local` file:
27 
28 ```bash
29 SAEDESK_API_KEY=sk_live_abc123...
30 ```
31 </Step>
32 
33 <Step title="Make authenticated requests">
34 Include the key as a Bearer token:
35 
36 ```ts
37 const res = await fetch('/api/docs', {
38 headers: {
39 Authorization: `Bearer ${process.env.SAEDESK_API_KEY}`
40 }
41 })
42 ```
43 </Step>
44</Steps>
45 
46## Rate Limits
47 
48| Plan | Requests/min | Burst |
49|------------|-------------|-------|
50| Free | 60 | 100 |
51| Pro | 600 | 1000 |
52| Enterprise | Unlimited | — |
53 
54<Callout type="info">
55 Rate limit headers are included in every response.
56 See the **Rate Limits** guide for retry strategies.
57</Callout>
MDX

Why Saedesk

The documentation platform built for modern teams

Legacy documentation tools force you to choose between ease-of-use and developer control. DIY static site generators give you flexibility but demand constant maintenance. Saedesk gives you the best of both worlds — a polished platform with a true docs-as-code workflow, zero infrastructure to manage, and AI-powered features your readers will love.

Feature
Saedesk
Legacy Wiki / CMS
DIY Static Site
Docs-as-code workflow (Git-based)
MDX with React component support
AI-powered semantic search
Sub-2s build and deploy
Built-in analytics (no cookies)
Professional themes included
PR preview environments
OpenAPI / Swagger import
Global CDN (300+ locations)
Zero maintenance burden
Custom React components
LLM-ready structured output

For developer relations teams

Ship documentation at the speed of your product. Review docs in PRs, deploy on merge, and get analytics on what your developers actually read.

For engineering teams

Keep docs next to code in the same repository. Use the tools you already know — Git, Markdown, React components, and CI/CD pipelines.

For product teams

Launch beautiful documentation without relying on engineering. The visual editor and built-in themes make content updates effortless.

Ready to ship
better documentation?

Join 4,200+ documentation sites already running on Saedesk. Get started for free with no credit card required — your first docs site deploys in under 60 seconds. Migrate from your existing tool with our one-command CLI importer.

$npx create-saedesk my-docs
99.9%
Uptime SLA
< 2s
Build & deploy
300+
Edge locations
14 days
Free trial

Common Questions

Do I need a credit card to start?

No. The free trial gives you full access to every feature for 14 days — no credit card required.

Can I migrate from my existing docs tool?

Yes. Saedesk includes a migration CLI that imports from GitBook, Notion, Docusaurus, and plain Markdown. Most teams complete migration in under a day.

What happens when my trial ends?

Your site stays live on the free plan with core features. Upgrade anytime to unlock AI search, analytics, and custom domains.