This guide shows how to integrate Monta Partner API with n8n workflows using the MCP Client Tool node.
n8n Cloud now supports MCP (Model Context Protocol) servers via the MCP Client Tool node. This allows you to access up to 185 Monta Partner API operations directly in your workflows.
Note: The number of available tools depends on your credential scopes:
all:read + all:write = 164 tools (delete operations hidden)all scope = all 185 toolshttps://partner-api-mcp.monta.app/sseIn the MCP Client Tool node configuration:
https://partner-api-mcp.monta.app/sseX-Monta-AuthYOUR_CLIENT_ID:YOUR_CLIENT_SECRETReplace YOUR_CLIENT_ID and YOUR_CLIENT_SECRET with your actual Monta API credentials.
Once connected:
Click "Refresh Tools" to load available operations
You'll see tools like (number depends on your scopes):
get-teams - List all teamsget-charge-points - List charge pointspost-charges - Start charging sessiondelete-charge - Stop charging sessionget-vehicles - List vehiclesNote: Some AI models have limited tool capacity (e.g., 128 tools). If you see this limitation, select only the tools you need for your workflows.
Select the tool you want to use
Fill in required parameters (marked with asterisks in n8n)
teamId, chargePointId) are always requiredpage, perPage, state) are optionalExecute the workflow
Most reliable method for n8n Cloud:
X-Monta-AuthclientId:clientSecretStandard HTTP Basic authentication:
If you already have an access token:
AuthorizationBearer YOUR_ACCESS_TOKENTo get a bearer token:
curl -X POST https://partner-api.monta.com/api/v1/auth/token \
-H "Content-Type: application/json" \
-d '{
"grantType": "client_credentials",
"clientId": "your-client-id",
"clientSecret": "your-client-secret"
}'