storefront mcp for VS Code
io.github.maarmapa/storefront-mcp
E-commerce storefront over MCP: public catalog tools plus token-gated back-office tools.
client:VS Code
transport:stdio
runtime:npm
Install storefront mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "catalog-adapter",
"description": "CATALOG_ADAPTER",
"password": true
},
{
"type": "promptString",
"id": "mcp-secret",
"description": "MCP_SECRET",
"password": true
},
{
"type": "promptString",
"id": "mcp-server-name",
"description": "MCP_SERVER_NAME",
"password": true
}
],
"servers": {
"storefront-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"storefront-mcp"
],
"env": {
"CATALOG_ADAPTER": "${input:catalog-adapter}",
"MCP_SECRET": "${input:mcp-secret}",
"MCP_SERVER_NAME": "${input:mcp-server-name}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs