Skip to content
Need help?

Get support from our team or browse troubleshooting resources.

Use the docs with AI assistants ​

An AI assistant answers Quantix questions best when it reads this documentation instead of guessing. The docs are available to assistants in two ways:

  • The docs MCP server at https://docs.quantixkvm.com/mcp. An assistant that supports the Model Context Protocol (MCP) searches the docs and reads whole pages while it works, and can show you the link of each page it used.
  • Two plain-text files, llms.txt and llms-full.txt, for assistants without MCP. See llms.txt.

The server is public and read-only. It needs no account or key, serves only the pages published on this site, and has no access to your hosts or your QvDC. What your assistant sends it is only its search words and the names of the pages it asks for.

Prerequisites ​

  • An AI assistant that supports remote MCP servers over HTTP (also called Streamable HTTP). Claude Code, Claude Desktop, Cursor and VS Code do.
  • For an assistant that runs on your computer (Claude Code, Cursor, VS Code): the computer can reach https://docs.quantixkvm.com over HTTPS (TCP 443).

What the assistant can do ​

ToolWhat it does
search_docsSearches every page and returns the best matches, best first, each with a short excerpt and its link. Up to 20 results.
get_pageReturns one page in full, as Markdown, with its link.
list_pagesLists the pages by section, with each page's title, description and link, optionally for one section only.
list_sectionsLists the sections and how many pages each has.

Ask your assistant a question as usual — for example "How do I add a second host to my cluster?" — and it uses these tools on its own.

Add it to Claude Code ​

  1. In a terminal, run:

    sh
    claude mcp add --transport http quantix-docs https://docs.quantixkvm.com/mcp

    This adds the server for the current project only. To use it in every project, add --scope user before quantix-docs.

  2. Check the connection:

    sh
    claude mcp list

    The line for quantix-docs ends in Connected. Inside a Claude Code session, /mcp shows the same.

To remove it: claude mcp remove quantix-docs.

Add it to Claude Desktop ​

  1. Open Settings, then Connectors.
  2. Choose Add custom connector.
  3. Enter a name, for example Quantix docs, and the URL https://docs.quantixkvm.com/mcp. Leave any authentication settings empty.
  4. Choose Add.

In a new chat, the connector's tools appear in the tools menu. If you do not see Add custom connector, your Claude plan or your organization's settings do not allow custom connectors; ask your Claude administrator.

Add it to Cursor ​

  1. Open ~/.cursor/mcp.json to use the server in every project, or .cursor/mcp.json in a project folder for that project only. Create the file if it does not exist.

  2. Add the server:

    json
    {
      "mcpServers": {
        "quantix-docs": {
          "url": "https://docs.quantixkvm.com/mcp"
        }
      }
    }

    If the file already has an mcpServers object, add the quantix-docs entry inside it.

  3. Save the file. Cursor's MCP settings list quantix-docs with its four tools.

Add it to VS Code ​

The tools are used by GitHub Copilot Chat in Agent mode.

  1. In your workspace, create .vscode/mcp.json:

    json
    {
      "servers": {
        "quantix-docs": {
          "type": "http",
          "url": "https://docs.quantixkvm.com/mcp"
        }
      }
    }

    Or run MCP: Add Server from the Command Palette, choose HTTP, and enter the URL.

  2. Save the file and start the server when VS Code offers to.

  3. Open Copilot Chat, switch to Agent mode, and check that the quantix-docs tools are selected in the tools picker.

If VS Code does not offer MCP servers, your organization's policy may have turned them off; ask your administrator.

Other assistants ​

Any MCP client that supports the Streamable HTTP transport can connect:

SettingValue
URLhttps://docs.quantixkvm.com/mcp
TransportHTTP (Streamable HTTP)
AuthenticationNone
MCP protocol versions2025-06-18, 2025-03-26

Clients that only support the older HTTP + SSE transport, or only local (stdio) servers, cannot connect directly.

llms.txt ​

For an assistant without MCP support, give it one of these files — paste the link, or download the file and attach it:

FileWhat it holds
https://docs.quantixkvm.com/llms.txtA short index: every page's title and link, with its description, grouped by section.
https://docs.quantixkvm.com/llms-full.txtThe full text of every page in one file.

Both files, and the MCP server, are published together with this site, so they always match the pages you see here.

Troubleshooting ​

The assistant does not show the quantix-docs tools. Check that the URL ends in /mcp and that the transport is HTTP, not SSE or stdio. In Claude Code, claude mcp get quantix-docs shows the URL and type it uses. Restart the assistant after changing its configuration.

Opening the URL in a web browser shows "method not allowed". This is expected. The server answers MCP clients only; a browser's plain page request is refused.

The connection fails from an office network. A proxy or firewall may block outbound HTTPS to docs.quantixkvm.com. Check that the computer can open https://docs.quantixkvm.com in a browser.

A request fails with HTTP 503. The server is under heavy load. Retry after a second or two.

Need help? Open a ticket in the customer portal.