> ## 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.

# Getting Started

> Connect an MCP client to Dexi

Every client uses the same server URL and the same browser-consent flow: add the server, your browser opens a Dexi approval page, click **Approve**, done. Longer walkthroughs with screenshots live at [dexi.net/mcp](https://dexi.net/mcp).

```
https://mcp.dexi.net/mcp
```

## Claude Code

The dexi plugin registers the server plus a usage skill in one step:

```bash theme={null}
claude plugin marketplace add turbo-labs/dexi-claude
claude plugin install dexi@dexi-claude
```

Or add the server directly (use `--scope user` so it applies to every project, not just the current one):

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

Either way, run `/mcp` inside Claude Code and select **dexi** to authenticate.

## Claude (claude.ai and Desktop)

**Settings → Connectors → Add custom connector**, paste the server URL, then approve in the browser. Custom connectors require a paid Claude plan.

## Cursor

Add to `~/.cursor/mcp.json`:

```json theme={null}
{
  "mcpServers": {
    "dexi": {
      "url": "https://mcp.dexi.net/mcp"
    }
  }
}
```

## VS Code (Copilot)

Run **MCP: Add Server…** from the command palette and choose HTTP, or add to `.vscode/mcp.json`:

```json theme={null}
{
  "servers": {
    "dexi": {
      "type": "http",
      "url": "https://mcp.dexi.net/mcp"
    }
  }
}
```

## ChatGPT

Enable **Developer mode** under **Settings → Connectors → Advanced**, then create a connector with the server URL and OAuth authentication.

## Goose

Add a **Streamable HTTP** remote extension with the endpoint URL — in Goose Desktop's settings, or via `goose configure` in the CLI.

## Verify the connection

Ask your assistant:

> What did I save in Dexi this week?

You should see it call `list_notes` and answer from your workspace. If authentication didn't trigger, remove and re-add the server — and check **Settings → Connected apps** in Dexi to see whether the grant was created.
