fix(security) : passe le MCP inventory en HTTPS dans .mcp.json
Auto Tag Develop / tag (push) Successful in 9s

Le endpoint était en http:// : les credentials statiques (X-Profile-Id /
X-Profile-Password) transitaient en clair sur le premier hop avant la
redirection 301 vers https. Le serveur sert déjà le TLS (CA MALIO embarquée
côté image prod), donc on bascule l'URL en https://.
This commit is contained in:
Matthieu
2026-06-29 16:40:15 +02:00
parent e0ac8e75be
commit 35f3feb59c
+1 -1
View File
@@ -2,7 +2,7 @@
"mcpServers": {
"inventory": {
"type": "http",
"url": "http://inventory.malio-dev.fr/_mcp",
"url": "https://inventory.malio-dev.fr/_mcp",
"headers": {
"X-Profile-Id": "admin-default-profile",
"X-Profile-Password": "A123"