> ## Documentation Index
> Fetch the complete documentation index at: https://lib.findy.co.jp/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> How an AI agent reads Findy Library: the llms.txt index, per-page Markdown, and the search MCP server.

## Overview

Findy Library is published so that AI agents can read it directly, not only
people. Every page is available as plain Markdown, and the whole site is indexed
for agents. This page describes the three access paths an agent uses.

## 1. Discover what exists

`llms.txt` is an index that lists every page with a short description, so an
agent can decide what to read before fetching anything else. `llms-full.txt`
contains the entire site as a single file.

```bash theme={null}
curl https://lib.findy.co.jp/llms.txt        # index of all pages
curl https://lib.findy.co.jp/llms-full.txt   # the entire site in one file
```

## 2. Read a page as Markdown

Append `.md` to any page path to get its raw Markdown. The response is the same
content people see, without HTML to scrape.

```bash theme={null}
curl https://lib.findy.co.jp/development/pull-request.md
```

## 3. Search with the MCP server

Findy Library exposes a search MCP server at `https://lib.findy.co.jp/mcp`,
which lets an MCP-capable agent query the docs directly instead of fetching
pages one by one. No authentication is required.

Register the server with your MCP client:

<CodeGroup>
  ```bash Claude Code theme={null}
  claude mcp add --transport http findy-library https://lib.findy.co.jp/mcp
  ```

  ```json Cursor (mcp.json) theme={null}
  {
    "mcpServers": {
      "findy-library": {
        "url": "https://lib.findy.co.jp/mcp"
      }
    }
  }
  ```

  ```json VS Code (.vscode/mcp.json) theme={null}
  {
    "servers": {
      "findy-library": {
        "type": "http",
        "url": "https://lib.findy.co.jp/mcp"
      }
    }
  }
  ```
</CodeGroup>

Once connected, ask a question and the agent retrieves the passages most
relevant to it through the search tool.
