Retrieving Emporix MCP Token
To enable communication between Emporix and AI agents, first retrieve the MCP token.
This documentation describes a preview version of the feature, which is not fully functional yet. Some capabilities might be incomplete or subject to change. Please use it for evaluation purposes and in case of questions reach out to Emporix Support Team or ask directly in the Community.
The MCP token is required to open a communication channel between Emporix API and the AI tools. Follow these steps to generate the necessary API keys and retrieve the Emporix MCP token.
Open the Emporix Developer Portal. Navigate to the Manage API Keys option and choose the Add custom API.
Provide a name for the custom API keys and select the necessary scopes for your tenant:
MCP scope
additional scopes that you want to grant to your agent -- for example, for an AI Agent that is to manage products in Emporix system, grant the scopes related to products:
When done, Generate new API keys.
As a result, the generated credentials appear in the Custom API list:
Encode the
Client ID
andSecret
to Base64 using the following string format:clientId:secret
.
Example commands according to your operating system:
echo -n "clientId:secret" | base64
Example:
echo -n "X9S0SDt1LiIs7tSt7JpTOZAUBhtXR3VUxDwyChwFAkxFIfwe:uNW6iZklaUVKMpooBOle41rie99cjOBIPB1ktDSXmd4RH1P1r1Pl8WPr2CJXG4LM" | base64
The resulting output is the encoded MCP token, that looks similar to this:
WDlTMFNEdDFMaUlzN3RTdDdKcALOWkFVQmh0WFIzVlV4RHd5Q2h3RkFreEZJZndlOnVOVzZpWmtsYVVWS01wb29CT2xlNDFyaWU5OWNqT0JJUEIxa3REU1htZDRSSDFQMXIxUGw4V1ByMkNKWEc0TE0=
Copy or save the token so that you can use it to enable communication between Emporix and your AI tools.
Last updated
Was this helpful?