Solutions

Publish internal documentation behind company SSO

MkDocs, Docusaurus, Sphinx, or any static doc generator – build your docs, publish behind company auth. €49/month flat for the entire company.

Works with your agents
terminal
$ display publish ./report.html
 
Uploading    47kb
Auth       Google Workspace ✓
 
✓ Published
 
→ https://view.display.dev/p/f474hfd/8f3kx9
 
Viewers    anyone at acme.com
Expires    never
Version    1
 
$ 

The command

dsp publish ./site/ --name "internal-runbooks"

Any @yourco.com email authenticates with one click and reads the documentation.


Internal documentation needs internal access control.

Runbooks, architecture decision records, onboarding guides, process documentation – this content should be accessible to the whole company but not to the public internet.

The existing options:

  • Confluence – $6.05–$11.55/user/month. Every reader is a paid seat. Requires Confluence's editor. Static doc builds don't import cleanly. Good for collaborative editing; overkill for read-only distribution.
  • GitHub Pages (private) – requires Enterprise Cloud ($21/user/month) and GitHub accounts for every reader. PMs, operations, and HR don't have GitHub accounts.
  • GitBook – $249/month for visitor auth. Built for public-facing docs. Visitor authentication is treated as an enterprise upgrade.
  • Notion – no way to serve arbitrary HTML. Embedding docs requires rebuilding in Notion's editor.
  • Vercel – SSO is $300/month. Requires a git project for every site.
  • S3 + Cognito – engineering days to set up, ongoing maintenance.

display.dev: publish your MkDocs or Docusaurus build, get a company-gated URL. €49/month. No per-seat pricing.


display.dev vs. alternatives for internal docs

display.devConfluenceGitBook (visitor auth)GitHub Pages (private)
Monthly price (100 viewers)€49 flat$1,155/mo (Premium)$249/mo$2,100/mo
Google SSO
Microsoft SSO
Any static HTML site
Viewers need accounts✅ (paid seats)✅ (GitHub)
CLI publishgit push
Collaborative editing

What display.dev is not

display.dev doesn't edit your documentation. It publishes it.

For collaborative documentation that teams write and maintain together – Confluence, Notion, and GitBook are excellent. Use them for that.

display.dev is for the publishing step: when you have a built artifact (a static HTML site) and need it accessible to the company behind company auth. The two tools complement each other – write in Confluence, publish supplementary HTML artifacts in display.dev.


Workflows by generator

MkDocs:

mkdocs build --site-dir ./site
dsp publish ./site/ --name "platform-runbooks"

Docusaurus:

npm run build
dsp publish ./build/ --name "engineering-handbook"

Sphinx:

make html
dsp publish ./docs/_build/html/ --name "api-internal-docs"

VuePress / VitePress:

npm run docs:build
dsp publish ./docs/.vitepress/dist/ --name "architecture-docs"

CI/CD – publish on every merge

name: Publish Internal Docs
 
on:
  push:
    branches: [main]
 
jobs:
  docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
 
      - name: Install and build
        run: |
          pip install mkdocs mkdocs-material
          mkdocs build --site-dir ./site
 
      - name: Install display.dev CLI
        run: npm install -g @displaydev/cli
 
      - name: Publish docs
        run: |
          BASE_VERSION=$(dsp get "${{ vars.DISPLAY_ARTIFACT_ID }}" | jq -r .currentVersion)
          dsp publish ./site/ --id "${{ vars.DISPLAY_ARTIFACT_ID }}" --base-version "$BASE_VERSION"
        env:
          DISPLAYDEV_API_KEY: ${{ secrets.DISPLAYDEV_API_KEY }}

Every merge to main automatically updates the published documentation using the artifact ID stored in DISPLAY_ARTIFACT_ID.


Pricing

2 months free
Free

Try it. No credit card.

€0
  • Included: 10 gated artifacts
  • Included: Unlimited public artifacts*
  • Included: 50MB storage
  • Not included: Version history
  • Not included: Google + Microsoft SSO
  • Not included: Private artifacts
  • Not included: Audit logs

display.dev branded

Get started
Solo

Individuals. Unlimited gated sharing.

€15/mo
  • Included: Unlimited gated artifacts
  • Included: Unlimited public artifacts
  • Included: 1GB storage
  • Included: 10 versions
  • Not included: Google + Microsoft SSO
  • Not included: Private artifacts
  • Not included: Audit logs
Get started
Enterprise

For compliance-driven organizations.

Contact us

From €499/mo

  • Included: Unlimited gated artifacts
  • Included: Unlimited public artifacts
  • Included: Custom storage
  • Included: Unlimited versions
  • Included: Google + Microsoft SSO
  • Included: Private artifacts
  • Included: 365 days audit logs
Talk to us

Features

Authentication

Viewers click a link and sign in with their Google or Microsoft account, or a one-time password. No app to install. No account to create. No IT ticket.

Comments

Inline comments on every artifact. Your agent reads them via MCP, fetches the current version, republishes with short_id and base_version, and resolves the thread. The artifact stays a living document, not a one-shot screenshot.

Publish in 15 seconds

dsp publish ./file.html from your terminal, or one sentence in Claude Desktop. No git repo, no deploy pipeline, no project to configure.

Permanent URLs

Every artifact gets a URL that keeps working. Share in Slack, link in Notion, paste in email. It still works six months later.

Unlimited viewers

No per-seat pricing at any tier. Share with your PM, exec, legal team, or designer for the same flat price.

Any agent

Claude Code, Codex, and Cursor all work, along with anything else that creates HTML or Markdown output.

What teams say

"It's been an unexpectedly great way to move on from Google Docs, since so many of our docs are now native to markdown and getting them into a friendly Google Doc format for visibility and collaboration had become a real chore."

– Max Wood, CEO, Indigo Engineering. Read the story →


Common questions.

Can display.dev replace Confluence for our team?+

For read-only documentation published from a static generator – yes. display.dev is simpler and cheaper. For collaborative wikis with in-browser editing, search, and Jira integration, Confluence does things display.dev doesn't. The two complement each other.

Does search work in MkDocs or Docusaurus published via display.dev?+

Yes, if the search index is generated at build time (which MkDocs Material and Docusaurus do by default). Client-side search works fully. Server-side search integrations (Algolia, Elasticsearch) work if the search provider is accessible.

Can I have multiple documentation sites?+

Yes. Each dsp publish call with a unique name creates a separate artifact. acme.dsp.so/0kzNYG7O-platform-runbooks, acme.dsp.so/0kzNYG7O-engineering-handbook, acme.dsp.so/0kzNYG7O-onboarding-guide – all under the same €49/month.

What's the storage limit for documentation sites?+

MkDocs sites: 5–20MB. Docusaurus sites: 10–50MB. Sphinx sites: variable. display.dev's Pro tier (25GB) handles hundreds of documentation sites simultaneously.

Can I set a custom domain for internal docs?+

Yes. Pro tier includes one custom domain – e.g., docs.yourcompany.com. Enterprise includes unlimited custom domains.

Publish your first artifact in 15 seconds.

Free tier. No credit card. One-time password auth on free, Google + Microsoft SSO on Pro (€49/month flat).