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

# DWE Docs Plugin / MCP Server

> Connect this documentation to Claude or ChatGPT so it answers your questions using our official docs.

## What Is This?

AI assistants like Claude and ChatGPT answer from whatever they picked up during training. That information can be outdated, incomplete, or simply wrong about our products.

The DWE Docs Plugin / MCP Server gives the assistant a direct line to **this** documentation site. Once connected, it looks up the real page before answering you.

<Note>
  You do not need to be a programmer. Setup is a one-time copy-and-paste of a single web address, and takes about a minute.
</Note>

## The Address

This is the only thing you need to copy:

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

Once connected, the assistant gets three tools:

| Tool                              | What it does                          |
| --------------------------------- | ------------------------------------- |
| **Search documentation**          | Searches this site for relevant pages |
| **Query docs filesystem**         | Opens specific pages directly         |
| **Submit documentation feedback** | Reports a problem to our docs team    |

<Info>
  The first two tools are read-only. The third only sends a message to our docs team. The plugin can see this public documentation site and nothing else — not your files, your hardware, or anything in your account.
</Info>

## Setup

<Tabs>
  <Tab title="Claude">
    Available on Free, Pro, Max, Team, and Enterprise plans. Free accounts are limited to one custom connector.

    <Steps>
      <Step title="Open your connector settings">
        Open **Settings**, then under the **Customize** heading select **Connectors**.
      </Step>

      <Step title="Add a custom connector">
        Click the **Add** button in the top right, then choose **Add custom connector**.
      </Step>

      <Step title="Enter the name and address">
        Name it exactly `DWE` — that name becomes the shorthand you type in chat — and paste `https://docs.dwe.ai/mcp` into the **Remote MCP server URL** field.

        Leave **Advanced settings** alone — our server needs no authentication, so the OAuth fields stay empty. Click **Add**.
      </Step>

      <Step title="Click Connect">
        Adding the connector does not switch it on. On the page that appears, click **Connect**. You should then see **Connected to DWE**.
      </Step>

      <Step title="Allow the read-only tools">
        On the same page, find **Tool permissions**. Set the **Read-only tools** dropdown to **Always allow** so the assistant can search the docs without interrupting you.

        Leave **Write/delete tools** on **Needs approval**. That group holds only the feedback tool, and you should be asked before anything is sent.
      </Step>

      <Step title="Check it is on in your chat">
        In any conversation, click the **+** button to the left of the message box, then **Connectors**. **DWE** should already be toggled on.
      </Step>
    </Steps>

    <Note>
      On Team and Enterprise plans, an organization owner has to add the connector first under **Organization settings > Connectors**. After that, members find it under **Customize > Connectors** and click **Connect**.
    </Note>
  </Tab>

  <Tab title="ChatGPT">
    Custom plugins require **developer mode**, in the ChatGPT web app.

    <Steps>
      <Step title="Enable developer mode">
        Go to **Settings > Plugins**, then click **Developer mode**. This jumps you to **Settings > Security and login**, where you switch **Developer mode** on.

        ChatGPT flags this setting as elevated risk because it lets you add unverified plugins. That warning is about custom plugins in general — ours only reads this public documentation site.
      </Step>

      <Step title="Open the plugin directory">
        Go back to **Settings > Plugins** and choose **Browse plugins**, then click the **+** button beside the search box.
      </Step>

      <Step title="Fill in the New Plugin form">
        * **Name:** `DWE` (this becomes the shorthand you type in chat)
        * **Connection:** leave on **Server URL** and paste `https://docs.dwe.ai/mcp`
        * **Authentication:** change from OAuth to **No Auth**

        Tick **I understand and want to continue**, then click **Create**.
      </Step>

      <Step title="Connect it">
        A confirmation appears reading **Add DWE to ChatGPT**. Click **Connect**. You should see **DWE is now connected**.
      </Step>

      <Step title="Allow read actions">
        On the plugin's page, open **Permissions** and select **Allow read actions** — "ChatGPT can read without asking, but will ask before making changes."

        This is one step stricter than the **Allow low-risk actions** default for writes, while letting documentation searches run without a prompt every time.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude Code">
    If you use Claude Code, add it from your terminal in one line:

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

    Confirm it connected:

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

<Note>
  Menu names in Claude and ChatGPT change from time to time. If a step above does not match what you see, look for wherever your assistant lists **Connectors**, **Plugins**, or **Apps**, and find the option to add a custom one by URL.
</Note>

## Using It

Once it is connected, ask your questions normally — the assistant reaches for the docs on its own when a question is about our products.

To point it at the documentation explicitly, type `@DWE` in your message:

```
@DWE what is the depth rating of the exploreHD?
```

This is why the setup steps name it `DWE`: the name you give the connector is the shorthand you type.

## Troubleshooting

<AccordionGroup>
  <Accordion title="The assistant is not using the docs">
    Two things to check. First, adding the plugin is not the same as connecting it — open it in your settings and confirm it says **Connected**. Second, check it is switched on for your conversation.

    You can also point it at the docs explicitly by typing `@DWE` in your message.
  </Accordion>

  <Accordion title="I cannot find the option to add a custom plugin">
    In ChatGPT, custom plugins are hidden until **developer mode** is switched on under **Settings > Security and login**. In both Claude and ChatGPT, use the web app rather than a mobile app.
  </Accordion>

  <Accordion title="It keeps asking permission every time">
    Set the read tools to run without prompting. In Claude, set **Read-only tools** to **Always allow**. In ChatGPT, set the plugin's **Permissions** to **Allow read actions**.
  </Accordion>

  <Accordion title="It says the server could not be reached">
    Check the address for typos — it must be exactly `https://docs.dwe.ai/mcp`. Corporate firewalls and VPNs can also block the connection. If it still fails, contact [support@dwe.ai](mailto:support@dwe.ai).
  </Accordion>

  <Accordion title="The assistant gave me a wrong answer">
    Ask it to cite the page it used, then check that page directly. If our documentation is wrong, tell the assistant to report it — the plugin includes a feedback tool that sends the problem to our docs team. You can also email [support@dwe.ai](mailto:support@dwe.ai).
  </Accordion>
</AccordionGroup>
