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

# Connect your client

Configure the Mozark MCP server in your AI client.

Mozark is a **remote MCP server** using Streamable HTTP. Every supported client only needs the server URL; no local install is required.

```
https://mcp.mozark.ai/mcp
```

{% hint style="success" %}
**Let your agent set it up.** Most coding agents can configure MCP servers from a prompt. Paste this:

`Add the Mozark MCP server at https://mcp.mozark.ai/mcp to this agent, then start its authentication flow so I can sign in.`
{% endhint %}

{% tabs %}
{% tab title="Claude.ai / Claude Desktop" %}
{% stepper %}
{% step %}
Open **Settings → Connectors**.
{% endstep %}

{% step %}
Select **Add custom connector**.
{% endstep %}

{% step %}
Name it `Mozark`, paste the server URL and select **Add**.
{% endstep %}

{% step %}
Select **Connect** and complete the sign-in in the browser.
{% endstep %}

{% step %}
In a new chat, open the tools menu (**+** or ⚙ next to the message box) and make sure **Mozark** is toggled on.
{% endstep %}
{% endstepper %}
{% endtab %}

{% tab title="Claude Code" %}
Run once in your terminal:

```bash
claude mcp add --transport http mozark https://mcp.mozark.ai/mcp
```

Then inside a Claude Code session run `/mcp` and choose **Mozark** to authenticate.
{% endtab %}

{% tab title="Antigravity" %}
{% stepper %}
{% step %}
Open **Settings → MCP servers**.
{% endstep %}

{% step %}
Select **Add server**, then enter this URL:

```
https://mcp.mozark.ai/mcp
```

{% endstep %}

{% step %}
Name the server `Mozark`, save it, and complete the browser sign-in.
{% endstep %}
{% endstepper %}
{% endtab %}

{% tab title="Cursor" %}
{% stepper %}
{% step %}
Open **Settings → MCP** and select **Add new MCP server**.
{% endstep %}

{% step %}
Or add this to `~/.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "mozark": {
      "url": "https://mcp.mozark.ai/mcp"
    }
  }
}
```

{% endstep %}

{% step %}
Click the server entry to trigger sign-in.
{% endstep %}
{% endstepper %}
{% endtab %}

{% tab title="VS Code (Copilot)" %}
Add to your workspace `.vscode/mcp.json` (or user settings):

```json
{
  "servers": {
    "mozark": {
      "type": "http",
      "url": "https://mcp.mozark.ai/mcp"
    }
  }
}
```

Open the Copilot Chat tool picker and enable **mozark**; you'll be prompted to sign in.
{% endtab %}

{% tab title="Windsurf" %}
**Settings → Cascade → MCP servers → Add custom server**:

```json
{
  "mcpServers": {
    "mozark": {
      "serverUrl": "https://mcp.mozark.ai/mcp"
    }
  }
}
```

{% endtab %}

{% tab title="Codex" %}

```bash
codex mcp add mozark --url https://mcp.mozark.ai/mcp
```

{% endtab %}
{% endtabs %}

## Verify the connection

Ask: *"Are you connected to Mozark? Show me my active context."*

A working setup replies with your organisation, project and app. If the assistant has no Mozark tools, see [Troubleshooting](/mcp/mozark-mcp-docs/security-and-help/troubleshooting.md).


---

# 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://docs.mozark.ai/mcp/mozark-mcp-docs/getting-started/connect-your-client.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.
