Usage with OpenAI API

This guide outlines how to connect Make MCP server to the OpenAI API.

Prerequisites

Connect to OpenAI API

To connect Make MCP server to the OpenAI API:

  1. Configure your API call with the following:

curl https://api.openai.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
  "model": "gpt-4.1",
  "input": "List all available tools.",
  "tools": [
    {
      "type": "mcp",
      "server_label": "make",
      "server_url": "https://<MAKE_ZONE>/mcp/stateless",
      }
    ]
  }'
circle-check
  1. Replace <MAKE_ZONE> with your actual values.

  • MAKE_ZONE - The zone your organization is hosted in (e.g., eu2.make.com).

You've now connected Make MCP server to the OpenAI API.

Last updated