shop mcp for VS Code
io.github.hello532/shop-mcp
Read-only Shopify catalogue and stock for LLM agents. Stdlib only, no dependencies.
client:VS Code
transport:stdio
runtime:pypi
Install shop mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shopify-shop-domain",
"description": "SHOPIFY_SHOP_DOMAIN",
"password": true
},
{
"type": "promptString",
"id": "shopify-admin-token",
"description": "SHOPIFY_ADMIN_TOKEN",
"password": true
}
],
"servers": {
"shop-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"shop-mcp"
],
"env": {
"SHOPIFY_SHOP_DOMAIN": "${input:shopify-shop-domain}",
"SHOPIFY_ADMIN_TOKEN": "${input:shopify-admin-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs