mcp shopee for VS Code
io.github.codespar/mcp-shopee
MCP server for Shopee — LatAm marketplace Partner API v2 (orders, products, shipping, returns)
client:VS Code
transport:stdio
runtime:npm
Install mcp shopee in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shopee-partner-id",
"description": "SHOPEE_PARTNER_ID",
"password": true
},
{
"type": "promptString",
"id": "shopee-partner-key",
"description": "SHOPEE_PARTNER_KEY",
"password": true
},
{
"type": "promptString",
"id": "shopee-access-token",
"description": "SHOPEE_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "shopee-shop-id",
"description": "SHOPEE_SHOP_ID",
"password": true
},
{
"type": "promptString",
"id": "shopee-env",
"description": "SHOPEE_ENV",
"password": true
}
],
"servers": {
"mcp-shopee": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-shopee"
],
"env": {
"SHOPEE_PARTNER_ID": "${input:shopee-partner-id}",
"SHOPEE_PARTNER_KEY": "${input:shopee-partner-key}",
"SHOPEE_ACCESS_TOKEN": "${input:shopee-access-token}",
"SHOPEE_SHOP_ID": "${input:shopee-shop-id}",
"SHOPEE_ENV": "${input:shopee-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs