> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.voicecheap.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Model Context Protocol (MCP)

> Use the hosted VoiceCheap docs MCP server in Claude, ChatGPT, Cursor, VS Code, Codex, and other compatible AI tools.

export const PreviewButton = ({ children, href }) => {
  return (
    <a
      href={href}
      className="text-sm font-medium text-white dark:!text-zinc-950 bg-zinc-900 hover:bg-zinc-700 dark:bg-zinc-100 hover:dark:bg-zinc-300 rounded-full px-3.5 py-1.5 not-prose"
    >
      {children}
    </a>
  );
};

# Model Context Protocol (MCP)

Use the VoiceCheap MCP server when you want an AI tool to search the public VoiceCheap documentation and API reference instead of relying only on memory. This is the easiest way to help an AI understand how VoiceCheap works today.

## What this MCP server is for

* Grounding answers in the public `Documentation` and `API Reference` tabs
* Letting AI tools retrieve current VoiceCheap terminology, workflows, and API guidance
* Sharing one public docs source across Claude, ChatGPT, Cursor, VS Code, Codex, and other MCP clients

## What it does not do

* Access private projects, team data, or account state
* Run translations, uploads, or publishing jobs
* Expose internal repo notes, requirements, or unpublished operational docs

## MCP server URL

The VoiceCheap public docs MCP server is hosted at:

`https://voicecheap.ai/docs/mcp`

<Note>
  VoiceCheap intentionally keeps this MCP surface focused on the published public docs. Internal requirement files, changelogs, and private
  operational notes are not part of the hosted server.
</Note>

## Connect from the docs UI

Use the contextual menu on any page to connect quickly:

* **Copy MCP server URL**
* **Add MCP**
* **Connect to Cursor**
* **Connect to VS Code**

## Connect to AI tools

<Tabs>
  <Tab title="Claude">
    ## Connect in Claude

    <PreviewButton href="https://claude.ai/settings/connectors">
      Open Claude connectors
    </PreviewButton>

    <Steps>
      <Step title="Open custom connectors">
        In Claude, go to the connectors settings page and choose the option to add a custom connector.
      </Step>

      <Step title="Add the VoiceCheap MCP server">
        Use:

        * Name: `VoiceCheap`
        * URL: `https://voicecheap.ai/docs/mcp`
      </Step>

      <Step title="Enable it in chat">
        Once connected, enable the connector inside the conversation where you want Claude to use the VoiceCheap docs.
      </Step>
    </Steps>
  </Tab>

  <Tab title="ChatGPT">
    ## Connect in ChatGPT

    Use the VoiceCheap MCP server in ChatGPT when your plan and workspace support custom connectors.

    <Warning>
      ChatGPT connector availability can depend on plan type, region, workspace settings, and whether your workspace allows developer mode or
      custom MCP connectors.
    </Warning>

    Add this server:

    * Name: `VoiceCheap`
    * URL: `https://voicecheap.ai/docs/mcp`

    If you are in a managed workspace, you may need an owner or admin to enable the necessary connector settings first.
  </Tab>

  <Tab title="Claude Code">
    Add the MCP server with:

    ```bash theme={null}
    claude mcp add --transport http VoiceCheap https://voicecheap.ai/docs/mcp
    ```

    Test the connection:

    ```bash theme={null}
    claude mcp list
    ```
  </Tab>

  <Tab title="Cursor">
    <PreviewButton href="cursor://anysphere.cursor-deeplink/mcp/install?name=voicecheap&config=eyJ1cmwiOiJodHRwczovL3ZvaWNlY2hlYXAuYWkvZG9jcy9tY3AifQ==">
      Install in Cursor
    </PreviewButton>

    Or configure manually in `mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "VoiceCheap": {
          "url": "https://voicecheap.ai/docs/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    <PreviewButton href="https://vscode.dev/redirect/mcp/install?name=voicecheap&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fvoicecheap.ai%2Fdocs%2Fmcp%22%7D">
      Install in VS Code
    </PreviewButton>

    Or create `.vscode/mcp.json`:

    ```json theme={null}
    {
      "servers": {
        "VoiceCheap": {
          "type": "http",
          "url": "https://voicecheap.ai/docs/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Codex and other CLI tools">
    Add a server named `VoiceCheap` that points to `https://voicecheap.ai/docs/mcp` in your tool's MCP configuration.

    If your CLI uses an `mcp.json` format with `mcpServers`, add:

    ```json theme={null}
    {
      "mcpServers": {
        "VoiceCheap": {
          "url": "https://voicecheap.ai/docs/mcp"
        }
      }
    }
    ```

    If your CLI uses a `servers` object with `type` and `url`, add:

    ```json theme={null}
    {
      "servers": {
        "VoiceCheap": {
          "type": "http",
          "url": "https://voicecheap.ai/docs/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

## Search coverage

The hosted VoiceCheap MCP server is intended for the public docs experience. In practice, that means the searchable surface is the published page set in the docs navigation, not the private internal repo notes that also live under `docs/`.

## Related pages

* [Introduction](/docs/introduction)
* [API Reference](/docs/api-reference/introduction)
