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

# Introduction

> Connect AI assistants and capture tools to your Dexi workspace

Dexi is a lifelong learning system: notes, bookmarks, newsletters, and RSS feeds collected into one searchable workspace. Everything you save becomes a note, so one search — full-text or semantic — covers your whole reading life.

This site documents the two ways software connects to Dexi:

<CardGroup cols={2}>
  <Card title="MCP server" icon="robot" href="/mcp/overview">
    The primary integration. Claude, ChatGPT, Cursor, and any other MCP client
    can search, read, and write your notes over an OAuth-secured connection.
    Full read/write access through twelve tools.
  </Card>

  <Card title="Capture API" icon="bookmark" href="/api/save-bookmark">
    A single write-only REST endpoint for saving pages from anywhere —
    authenticated with a personal API token. This is what the iOS share-sheet
    Shortcut uses.
  </Card>
</CardGroup>

A word on scope, so you don't go looking for endpoints that aren't here: Dexi's REST API is deliberately small. Personal API tokens authenticate only the capture endpoint — they cannot read your notes. Full programmatic access to your workspace (search, read, create, edit, review) goes through the [MCP server](/mcp/overview), where each connection is approved in the browser and can be revoked at any time. Your [published feeds](/api/feeds) are readable without any credentials.

<Warning>
  Keep API tokens and MCP connections to services you trust. A connected MCP
  client with the write scope can create, edit, and delete notes.
</Warning>

## Base URLs

| Surface    | URL                        |
| ---------- | -------------------------- |
| REST API   | `https://api.dexi.net`     |
| MCP server | `https://mcp.dexi.net/mcp` |
| App        | `https://app.dexi.net`     |

## Getting help

Questions or problems: [dexi.net/support](https://dexi.net/support), or email [team@dexi.net](mailto:team@dexi.net). The [knowledge base](https://dexi.net/kb) covers the product side of everything documented here.
