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

# Make

> Connect KonbiniAPI's hosted MCP server to Make scenarios with MCP Client.

Make supports MCP in both directions. To use KonbiniAPI inside Make, you want
the **Make MCP Client**, which lets a scenario call tools hosted on a remote MCP
server.

<Steps>
  <Step title="Add the MCP Client module">
    In your scenario, add the **MCP Client** module.
  </Step>

  <Step title="Enter the server URL">
    Point it to:

    ```text theme={null}
    https://mcp.konbiniapi.com
    ```
  </Step>

  <Step title="Authenticate">
    Use the authentication flow Make supports for the module:

    * OAuth if you want to authorize your KonbiniAPI account in-browser
    * Token or bearer-style auth if you prefer a direct KonbiniAPI API key
  </Step>

  <Step title="Choose the tool">
    Make loads the available tools from KonbiniAPI automatically. Pick the tool
    you want and map the inputs in the scenario UI.
  </Step>
</Steps>

## Recommended KonbiniAPI pattern

* Choose the specific typed tool you need, such as `instagram_get_user` or `tiktok_search_videos`
* Use `projection_preset`, `data_fields`, and `item_fields` to reduce payload size
* Store or transform the returned JSON in downstream Make modules

Official sources:

* [Make MCP Client overview](https://www.make.com/en/blog/mcp-client)
* [Make MCP Client integration page](https://www.make.com/en/integrations/mcp-client)
