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:
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",
}
]
}'If you experience connection issues, you can add /stream instead of /stateless to the end of your connection URL.
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

