> For the complete documentation index, see [llms.txt](https://staylime.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://staylime.com/docs/ai-assistants-mcp.md).

# AI Assistants (MCP)

You can connect this documentation directly to AI assistants like Claude using the Model Context Protocol (MCP). This allows the AI to instantly search our knowledge base, troubleshoot layout issues, and generate custom code based strictly on our official guides.

***

### How to connect the Staylime Docs

Your AI tool can read our published documentation directly using our public MCP endpoint: `https://staylime.com/docs/~gitbook/mcp`

**For Claude Chat (Web/Desktop):**

1. Open your Claude settings and navigate to **Connectors**.
2. Click **Add custom connector**.
3. Paste our MCP endpoint URL: `https://staylime.com/docs/~gitbook/mcp`.

**For Claude Code CLI:**&#x20;

Open your terminal and run the following command to register our site as a user-scoped MCP server:

```
claude mcp add gitbook-documentation --scope user --transport http https://staylime.com/docs/~gitbook/mcp
```

***

### ⚠️ How to prompt the AI correctly

Because this documentation hub contains guides for multiple Staylime products (Avante, Volume, EU Energy Label), **you must always specify your theme name in your prompt**. If you don't, the AI might give you instructions for the wrong theme.

**Example prompts for Theme Setup:**

* "I am using the **Avante** theme. How do I set up Linked Products and color swatches?"
* "In the **Volume** theme, why isn't my transparent header overlapping the first section?"
* "Search the **Avante** docs and explain the difference between the Mega Menu and Hover Mega Menu."

**Example prompts for Custom Code & Troubleshooting:**

* "Write custom CSS to hide the 'Powered by Shopify' link in the footer according to your documentation for the **Avante** theme."
* "My video banner isn't autoplaying on mobile. Search the docs for reasons why iOS blocks autoplay."
* "I use the **Volume** theme. I want to add an FAQ page. Guide me step-by-step on how to assign the FAQ template and use the Collapsible tabs section."

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://staylime.com/docs/ai-assistants-mcp.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
