Quickstart
1. Install in your agent
Section titled “1. Install in your agent”One command issues a free API key and wires Marrow into every agent you have:
npx -y marrow-setup --email you@example.comIt 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.
2. Your first scout → read
Section titled “2. Your first scout → read”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.
3. Track what changed
Section titled “3. Track what changed”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.
Or call the API directly
Section titled “Or call the API directly”Plain HTTP with a Bearer key. The REST API is Firecrawl-compatible — point your client at Marrow, keep your code.
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.
Next steps
Section titled “Next steps”- Use with AI agents — MCP setup for every client
- Use from your shell — the
marrowCLI for terminals, scripts and CI - Pricing, API reference and feature guides are coming as the docs grow.