ecommerce intelligence mcp server for VS Code
io.github.thenextgennexus/ecommerce-intelligence-mcp-server
Analyze Shopify stores, get product catalogs, pricing strategies, and store performance data
client:VS Code
transport:stdio
runtime:npm
Install ecommerce intelligence mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apify-token",
"description": "APIFY_TOKEN",
"password": true
}
],
"servers": {
"ecommerce-intelligence-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@thenextgennexus/ecommerce-intelligence-mcp-server"
],
"env": {
"APIFY_TOKEN": "${input:apify-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs