Skip to main content
Moxn supports round-trip migration: import your existing docs, work in Moxn with AI agents and your team, and export changes back when you need to.

Import

Bring existing documentation into Moxn from external sources.

Import from Local Files

Markdown, text, and CSV files from your filesystem

Import from Notion

Pages, databases, properties, and cross-references

Export

Get your docs back out of Moxn in the format you need.

Export to Local Files

Download as markdown with images, PDFs, and CSVs

Export to Notion

Push pages back to your Notion workspace

Two Ways to Run

All import and export commands are available through two tools:
ToolInstallCommand prefix
@moxn/context-clinpm install -g @moxn/context-clicontext import-notion, context export-local, etc.
@moxn/kb-migrateNo install needednpx @moxn/kb-migrate notion, npx @moxn/kb-migrate export, etc.
Both use the same underlying migration engine. The CLI is convenient if you already have @moxn/context-cli installed for other commands. npx @moxn/kb-migrate works without any prior installation.

Date Filtering

All commands support date filters to narrow the scope of your import or export:
# Only import/export docs modified in the last week
--modified-after=2026-02-27

# Only docs created in January
--created-after=2026-01-01 --created-before=2026-02-01
Dates use ISO 8601 format (YYYY-MM-DD or full datetime).