> 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-cursor.md).

# Usage with Cursor

This guide outlines how to connect Make MCP server to Cursor using an MCP token.&#x20;

### Prerequisites

* Cursor account (Desktop version)
* [MCP token](/mcp-server/connect-using-mcp-token.md)

### Connect to Cursor

To connect Make MCP server to Cursor:

1. Open your Cursor account.&#x20;
2. On the upper right-hand side, click the gear icon to open the **Cursor Settings** dialog.&#x20;
3. In the left sidebar, click **Tools & Integrations** (or **Tools**, if you're on the Free Plan).
4. Under **MCP Tools**, click **Add Custom MCP** to open the editor for the `mcp.json` file.
5. In the editor, add the configuration.

Use the following URL, with your zone embedded in the URL:

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

Configuration example:

```json
{
  "mcpServers": {
    "make": {
      "url": "https://<MAKE_ZONE>/mcp/stateless",
      "headers": {
        "Authorization": "Bearer ${env:MCP_TOKEN}"
    }
  }
}
```

{% 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 %}

6. 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 token in your Make profile.

You've now connected Make MCP server to Cursor.&#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:

```
GET https://developers.make.com/mcp-server/connect-using-mcp-token/usage-with-cursor.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
