You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/deployment/mendix-cloud-deploy/deploy-apis-with-ai-agents.md
+23-17Lines changed: 23 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,9 @@ description: "Describes how to connect AI coding assistants to Mendix Cloud usin
12
12
13
13
For example, you can ask the AI assistant to list your apps, deploy the latest package to an acceptance environment, or stop a production environment, without writing `curl` commands or navigating the Mendix Portal.
14
14
15
+
{{% alert color="warning" %}}
16
+
The use of AI tools is non-deterministic, outputs may vary between runs. AI Assistants/Agents will have permissions based on what the API Key and Personal Access Token (PAT) have access to. Through the [Backups API](https://docs.mendix.com/apidocs-mxsdk/apidocs/backups-api/) and Logs, they may have access to production environments and Personally Identifiable Information (PII) contained within your environments. Carefully review and limit the scope of credentials before use.
17
+
{{% /alert %}}
15
18
16
19
## Prerequisites
17
20
@@ -30,17 +33,18 @@ To add the Mendix MCP server in Claude Code, run the following command in your t
30
33
31
34
```bash
32
35
claude mcp add --scope user --transport http mendix-cloud-mcp \
@@ -150,7 +154,7 @@ Two authentication methods are used depending on the API:
150
154
151
155
| API Version | Headers Required |
152
156
| --- | --- |
153
-
| Deploy API v4, App Permissions |`Authorization: MxToken <your-pat>`|
157
+
| Deploy API v4, App Permissions |`Authorization: MxToken {GENERATED_PAT}`|
154
158
| Deploy API v1/v2, Build API, Backups API |`Mendix-Username` and `Mendix-ApiKey`|
155
159
156
160
{{% alert color="info" %}}
@@ -168,6 +172,8 @@ Clients that only support OAuth 2.0 authentication without custom header support
168
172
169
173
## Known Limitations {#limitations}
170
174
175
+
The following limitations apply:
176
+
171
177
| Limitation | Details |
172
178
| --- | --- |
173
179
| File uploads not supported | The MCP gateway does not support `application/octet-stream` content types. APIs that require binary file upload, such as uploading a deployment package, are not supported. Use the Mendix Portal or the Mendix CLI instead. |
@@ -197,9 +203,9 @@ Your MCP client is not sending the correct `Accept` header. This happens when yo
197
203
claude mcp remove mendix-cloud-mcp
198
204
claude mcp add --scope user --transport http mendix-cloud-mcp \
0 commit comments