For the complete documentation index, see llms.txt. This page is also available as Markdown.

Connect via MCP

Connect VergeOS Docs to Claude, Cursor, VS Code, and other AI tools through the hosted GitBook MCP server.

VergeOS Docs publishes a hosted MCP (Model Context Protocol) server. Connect it to an AI assistant — Claude, Cursor, VS Code Copilot, Codex, and others — and that assistant can search and read this documentation directly while it helps you, instead of guessing or relying on stale training data.

You need a client that supports remote MCP servers over HTTP. The server is public, so no API key or sign-in is required.

The server

URL

https://docs.verge.io/~gitbook/mcp

Transport

Streamable HTTP

Authentication

None (public)

Add the server

Run the CLI command to add it for your user account:

claude mcp add vergeos-docs --scope user --transport http https://docs.verge.io/~gitbook/mcp

Then confirm it connected:

claude mcp list
  1. Open Settings → Connectors.

  2. Choose Add custom connector.

  3. Name it VergeOS Docs and set the URL to:

    https://docs.verge.io/~gitbook/mcp
  4. Save, then enable the connector in a new chat.

Add the server to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):

{
  "mcpServers": {
    "vergeos-docs": {
      "url": "https://docs.verge.io/~gitbook/mcp"
    }
  }
}

Use the one-click install link:

vscode:mcp/install?%7B%22name%22%3A%22VergeOS%20Docs%22%2C%22url%22%3A%22https%3A%2F%2Fdocs.verge.io%2F~gitbook%2Fmcp%22%7D

Or add it manually to .vscode/mcp.json:

{
  "servers": {
    "VergeOS Docs": {
      "url": "https://docs.verge.io/~gitbook/mcp"
    }
  }
}

Run the CLI command:

What you get

Once connected, the assistant gains two tools:

  • searchDocumentation — search across all VergeOS Docs and return matching content with direct page links.

  • getPage — fetch the full Markdown of a specific documentation page.

Try it

Ask your assistant something that should pull from the docs, for example:

If the tools are available and answers cite VergeOS Docs pages, the connection is working.

Go further with agent skills

The MCP server gives an assistant read access to the docs. If you use Claude Code or Codex, the VergeOS agent skills package adds task-focused workflows on top — troubleshooting, diagnostics, training, and infrastructure management through the vrg CLI — and bundles this same docs MCP server for you.

Last updated

Was this helpful?