Tool Access Control
By default, your MCP token grants AI systems access to all of your tools in Make, across every organization you belong to. You can append query parameters to the MCP URL to restrict tool access to the following levels:
Organization level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?organizationId=<id>
The AI can see all scenarios in any team within the specified organization.
Team level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?teamId=<id>
The AI can see all scenarios within the specified team.
Scenario level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?scenarioId=<id>
The AI can only see the specified scenario.
You can also specify multiple values for each of the entities above using the following syntax:
?scenarioId[]=<id1>&scenarioId[]=<id2>
Currently, these parameters are mutually exclusive and can't be combined.
Last updated