> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/mcp-server/connect-using-mcp-token/usage-with-chatgpt.md).

# Usage with ChatGPT

This guide outlines how to connect Make MCP server with ChatGPT using an MCP token.

### Prerequisites

* ChatGPT account (paid subscription)
* [MCP token](/mcp-server/connect-using-mcp-token.md)

### Connect to ChatGPT

To connect Make MCP server to ChatGPT:

1. Open the web version of ChatGPT.
2. Click on your profile name on the left sidebar.

<figure><img src="/files/s8YSw42SD0qceySXyw7F" alt="" width="563"><figcaption></figcaption></figure>

3. Click **Settings** to open the settings dialog.&#x20;
4. Go to **Apps** on the left sidebar, then click **Advanced settings**.
5. In **Advanced settings**, enable **Developer mode**.
6. Return to **Apps**, and click the **Create app** button that is now visible.
7. In the **New App** dialog, name your MCP server.&#x20;
8. In **Connection**, add the following URL:

```
https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>/stateless
```

{% hint style="success" %}
If you experience connection issues, you can add  `/stream`  instead of `/stateless` to the end of your connection URL. For SSE, add  `/sse`  instead.&#x20;
{% endhint %}

9. Replace `<MAKE_ZONE>` and `<MCP_TOKEN>` with your actual values.

* `MAKE_ZONE` - The zone your organization is hosted in (e.g., `eu2.make.com`).
* `MCP_TOKEN` - You can generate your MCP API token in your Make profile.

9. In **Authentication**, select **No authentication**.&#x20;
10. Select **I understand and want to continue.**&#x20;
11. Click **Create**.

You have now connected Make MCP server to ChatGPT. In **Apps**, you can view its details and select which tools ChatGPT can use.&#x20;

### Enable in chat

Once you add Make MCP server, enable it in the chat:

1. Open a new chat in ChatGPT.&#x20;
2. In the left-hand corner of the message bar, click the + sign to open a dropdown.&#x20;

<figure><img src="/files/6iuVGs5Zoo4TY1GNLjhE" alt="" width="563"><figcaption></figcaption></figure>

3. Click **More**, then select the Make MCP server that you connected before.&#x20;

You have now enabled Make MCP server in the chat, allowing ChatGPT to use Make tools when interacting with you.&#x20;


---

# 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://developers.make.com/mcp-server/connect-using-mcp-token/usage-with-chatgpt.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.
