What Kuickr is, how to connect Claude or Codex in under a minute, and how the CLI and sharing work.
kuickr.co/you/handbook/intro.md. Markdown renders to clean pages; HTML, PDFs and images are served as-is.kuickr.co/you/handbook/intro.md), so you find them by where they live, not by remembering a slug. The same agent — or you, three weeks later — can read, edit, restyle, search, and see the full revision history. You publish and keep, instead of publish and forget.https://kuickr.co/mcp, then approve the Kuickr sign-in in the browser.Settings → Connectors → Add custom connector. Name it kuickr, URL https://kuickr.co/mcp, leave the OAuth fields blank → Add → approve the sign-in.
Use a ChatGPT Business, Enterprise, or Edu workspace with custom MCP apps enabled. In ChatGPT web, open Settings → Apps, create/add a custom app or custom MCP server, paste https://kuickr.co/mcp, then approve the OAuth sign-in. The exact label can vary by rollout.
claude mcp add --transport http \ kuickr https://kuickr.co/mcp
Then run /mcp → Authenticate → approve in the browser.
codex mcp add --url https://kuickr.co/mcp kuickr codex mcp login kuickr
Add the server, then approve the OAuth sign-in in the browser.
kuickr and set the URL to https://kuickr.co/mcp. Leave OAuth Client ID and Secret blank — Kuickr registers the client automatically (Dynamic Client Registration), so you don't need them.
kuickr_space / kuickr_folder on "ask," the rest on "allow."
Now in any chat: "Use kuickr to list my pages" or "Read my-org/handbook/intro.md and fix the typo in the first heading."
codex mcp login kuickr works. Add experimental_use_rmcp_client = true to ~/.codex/config.toml, or run the login once with codex -c experimental_use_rmcp_client=true mcp login kuickr. Then open a new Codex chat and run /mcp to confirm Kuickr is connected.https://kuickr.co/mcp with 10 tools to list, read, search, choose design tokens, create, edit, move, and share pages and folders. Creating a page at an existing path edits it — including HTML pages, hosted as-is. Every tool is permissioned, and you approve them per-tool the first time you connect.push writes from your files; chat/agent edits write to Kuickr directly. They don't flow back to your repo, and the next push from your repo would overwrite them. Pick one source of truth per folder: repo-driven (push only) or Kuickr-driven (edit in place via chats).curl -sSL https://kuickr.co/install.sh | shmacOS & Linux. Or
brew install nauman/tap/kuickr. Then run kuickr login --browser and approve the browser prompt. See the full CLI page.kuickr login --browser, the CLI starts a temporary callback on your own computer, usually something like http://127.0.0.1:59429/callback. Approving sends an API token back to that local callback so the CLI can save it. Only approve if you just ran the command yourself. Kuickr rejects non-loopback callback hosts, so the token cannot be redirected to a remote website. The step-by-step version is on the CLI login guide.kuickr docs create handbook # scaffold a starter folder kuickr attach handbook --space you --dir handbook kuickr open you/handbookThe folder structure becomes your URL structure — numbered files order the sidebar, and
##/### headings build the on-page table of contents automatically.kuickr push is a content sync, not a git operation. It walks your --dir folder, hashes every file, and uploads. The server keeps what changed and skips what didn't — there's no git history involved. The --repo/--branch flags on attach only record where the docs came from as a label; they don't pull from git.push?.md, .html, .pdf, images) is uploaded with a content hash. The server upserts changed files, skips unchanged ones, and prunes files you've deleted locally — so the hosted folder mirrors your directory. Pass --keep to skip pruning.kuickr push. To automate it, wire kuickr push into a git hook or CI step (e.g. a GitHub Action on merge) so every commit re-syncs.inbox are private until you share them.kuickr login --browser. If you need manual or scripted auth, copy a token from settings and run kuickr login --token <TOKEN>. The CLI stores it in ~/.kuickr/config.toml. For agent sessions, export KUICKR_TOKEN (and KUICKR_HOST) to override the file — handy with a secret manager. Codex users can point bearer_token_env_var = "KUICKR_TOKEN" at it in ~/.codex/config.toml.