Skip to content

Quickstart

One command issues a free API key and wires Marrow into every agent you have:

Terminal window
npx -y marrow-setup --email you@example.com

It detects your agents (Claude Code, Cursor, Claude Desktop, VS Code, Codex, Windsurf, Antigravity), writes the MCP server config in the right format, backs up existing config, and adds the Marrow skill. Nothing is installed globally — it runs once and exits.

Ask your agent:

Search with Marrow for the latest changelog on astro.build

Behind the scenes marrow_scout maps the page’s links and structure, then marrow_read pulls clean markdown — without dumping the whole site into context.

Check astro.build/blog for updates

You get a section-level diff versus your last read — only what changed (added / modified / moved / removed). The diff rides free.

Plain HTTP with a Bearer key. The REST API is Firecrawl-compatible — point your client at Marrow, keep your code.

Terminal window
curl -X POST https://api.marrow.navii.online/v1/scrape \
-H "Authorization: Bearer mrw_xxx" -H "Content-Type: application/json" \
-d '{"url":"https://example.com","formats":["markdown","changeTracking"]}'

Prefer your terminal? Install the CLI and skip the curl — see Use from your shell.

  • Use with AI agents — MCP setup for every client
  • Use from your shell — the marrow CLI for terminals, scripts and CI
  • Pricing, API reference and feature guides are coming as the docs grow.