Tools Access Control
By default, your MCP token grants access to all your tools across every organization you belong to. To restrict the tools your AI systems can access, you can append specific query parameters to the MCP URL address.
Organization-level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?organizationId=<id>
The Agent will see all scenarios within any team under the specified organization.
Team-level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?teamId=<id>
The Agent will see all scenarios within the specified team.
Scenario-level
https://<MAKE_ZONE>/mcp/api/v1/u/<MCP_TOKEN>/sse?scenarioId=<id>
The Agent will 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>
At the moment, these parameters are mutually exclusive and cannot be combined.
Last updated