# Usage with Kiro

This guide outlines how to connect Make MCP server to Kiro using OAuth.&#x20;

### Prerequisites

* [Kiro](https://kiro.dev/docs/getting-started/installation/)

### Connect to Kiro

To connect Make MCP server to Kiro:

1. In Kiro, click the ghost icon on the left sidebar.&#x20;

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

2. Hover over the **MCP servers** section and click the **Open MCP Config** icon.
3. In the `mcp.json` configuration, add the following:&#x20;

```json
{
  "mcpServers": {
    "make": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.make.com"
      ]
    }
  }
}
```

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

5. Enter `Ctrl` + `S` (Windows) or `Cmd` + `S` (Mac) to save. The OAuth consent screen opens in a new browser window.
6. In the consent screen, select your organization and scopes, then click **Allow**.
7. Return to the **MCP servers** section to check whether Make MCP server connected successfully.&#x20;

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

You have now connected Make MCP server to Kiro.&#x20;

### Call tools on Kiro

You can call Make MCP tools in the chat:

1. To open the chat, enter  `Ctrl` + `L` (Windows) or `Cmd` + `L` (Mac).&#x20;
2. Enter a question related to your connected Make MCP tools.
3. When asked for permission to call a specific MCP tool, click **Accept**.&#x20;

Kiro calls the relevant tool and responds to your question.&#x20;


---

# Agent Instructions: 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-oauth/usage-with-kiro.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.
