adobe commerce docs mcp for VS Code
io.github.jigarkkarangiya/adobe-commerce-docs-mcp
MCP server for Adobe Commerce / Magento 2 documentation — search, browse, and read official docs.
client:VS Code
transport:stdio
runtime:npm
Install adobe commerce docs mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cache-dir",
"description": "CACHE_DIR",
"password": true
},
{
"type": "promptString",
"id": "sitemap-url",
"description": "SITEMAP_URL",
"password": true
},
{
"type": "promptString",
"id": "extra-commerce-slugs",
"description": "EXTRA_COMMERCE_SLUGS",
"password": true
}
],
"servers": {
"adobe-commerce-docs-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"adobe-commerce-docs-mcp"
],
"env": {
"CACHE_DIR": "${input:cache-dir}",
"SITEMAP_URL": "${input:sitemap-url}",
"EXTRA_COMMERCE_SLUGS": "${input:extra-commerce-slugs}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs