Decionis CommerceGate MCP for VS Code
com.decionis/commerce-gate
Commerce preflights, D365 authorization, signed evidence, and reports; no marketplace or ERP writes.
client:VS Code
transport:stdio
runtime:npm
Install Decionis CommerceGate MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "decionis-api-key",
"description": "DECIONIS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "decionis-org-id",
"description": "DECIONIS_ORG_ID",
"password": true
},
{
"type": "promptString",
"id": "decionis-api-base",
"description": "DECIONIS_API_BASE",
"password": true
}
],
"servers": {
"commerce-gate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@decionis/commerce"
],
"env": {
"DECIONIS_API_KEY": "${input:decionis-api-key}",
"DECIONIS_ORG_ID": "${input:decionis-org-id}",
"DECIONIS_API_BASE": "${input:decionis-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs