brmarket mcp for VS Code
io.github.thomenz/brmarket-mcp
FREE Brazilian marketplace search (ML, Shopee, AliExpress) + import-tax calculator (x402)
client:VS Code
transport:stdio
runtime:npm
Install brmarket mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "evm-private-key",
"description": "EVM_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "solana-private-key",
"description": "SOLANA_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "solana-rpc-url",
"description": "SOLANA_RPC_URL",
"password": true
},
{
"type": "promptString",
"id": "brmarket-base-url",
"description": "BRMARKET_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "x402-network",
"description": "X402_NETWORK",
"password": true
}
],
"servers": {
"brmarket-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"brmarket-mcp"
],
"env": {
"EVM_PRIVATE_KEY": "${input:evm-private-key}",
"SOLANA_PRIVATE_KEY": "${input:solana-private-key}",
"SOLANA_RPC_URL": "${input:solana-rpc-url}",
"BRMARKET_BASE_URL": "${input:brmarket-base-url}",
"X402_NETWORK": "${input:x402-network}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs