# Use these docs with AI

# Use these docs with AI

These docs are available to AI assistants over MCP and as plain markdown. Connect the MCP server once and the assistant can search and read every page.

## Connect the MCP server

| Setting | Value |
| --- | --- |
| Server URL | `https://docs.memescale.ai/mcp` |
| Transport | Streamable HTTP |
| Authentication | None. No account, key or login. |
| Access | Read-only. |

#### Claude Code

```
claude mcp add --transport http memescale-docs https://docs.memescale.ai/mcp
```

#### Claude (web and desktop)

Add a custom connector in Claude's settings and use `https://docs.memescale.ai/mcp` as its URL.

#### Cursor

Open `https://docs.memescale.ai/mcp/deeplink` to install it in one step, or add it to `mcp.json`:

```
{
  "mcpServers": {
    "memescale-docs": { "url": "https://docs.memescale.ai/mcp" }
  }
}
```

#### Any other client

Any MCP client that supports remote servers over Streamable HTTP connects with the server URL alone.

Opening `https://docs.memescale.ai/mcp` in a browser shows these connection details.

## What the assistant can do

| Tool | What it does |
| --- | --- |
| `search` | Full-text search across every section of every page. Returns the best matches with a snippet and a link to the exact heading. |
| `list-pages` | Lists every page with its title, path and description. Pass `product` (for example `buy-bot`) to list one product. |
| `get-page` | Returns one page as markdown plus a link to each section. Takes a path such as `/buy-bot/buybot-setup` or a full docs URL. |

Every tool is read-only. Every link it returns points at docs.memescale.ai. The server and this site are generated from the same source, so both show the same content.

## Without MCP: plain-text files

An assistant that can only fetch web pages can read the docs as markdown instead.

| URL | Contents |
| --- | --- |
| `https://docs.memescale.ai/llms.txt` | Index of every page with a one-line description, linking to each page's markdown. |
| `https://docs.memescale.ai/llms-full.txt` | Every page in one file. |
| `https://docs.memescale.ai/raw/<product>/<page>.md` | One page. Example: `https://docs.memescale.ai/raw/buy-bot/buybot-setup.md`. |

`https://memescale.ai/llms.txt` redirects to the docs index.
