> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dexi.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Connect an assistant or save your first bookmark in two minutes

You need a Dexi account — sign up free at [app.dexi.net](https://app.dexi.net/account/register).

## Path 1: connect Claude (MCP)

From a terminal with [Claude Code](https://claude.com/claude-code) installed:

```bash theme={null}
claude mcp add --transport http --scope user dexi https://mcp.dexi.net/mcp
```

Then run `/mcp` inside Claude Code and pick **dexi** to authenticate — your browser opens a Dexi consent page; approve it and you're connected.

Verify it works by asking:

> What did I save in Dexi this week?

Claude calls the `list_notes` tool and answers from your actual workspace. Using claude.ai, Cursor, ChatGPT, or another client instead? See [Getting Started with MCP](/mcp/getting-started).

## Path 2: save a bookmark (REST)

Create a token in [Settings → API tokens](https://app.dexi.net/dashboard/settings) — it's shown once, starting with `dxi_`. Then:

```bash theme={null}
curl -X POST https://api.dexi.net/api/v1/bookmarks/save \
  -H "Authorization: Bearer dxi_YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/article", "title": "Worth reading"}'
```

The page appears in your workspace as a bookmark-backed note, searchable alongside everything else. Full request/response details: [Save Bookmark](/api/save-bookmark).

## Where to go next

* [Authentication](/authentication) — how the two credential kinds work and differ
* [MCP tools](/mcp/tools) — everything a connected assistant can do
* [Examples](/mcp/examples) — agent flows worth stealing
