douanecode mcp for VS Code
io.github.courouge/douanecode-mcp
EU customs code search (HS, NC8, TARIC): tariff classification and duty rates
client:VS Code
transport:stdio
runtime:pypi
Install douanecode mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "douanecode-api-key",
"description": "DOUANECODE_API_KEY",
"password": true
}
],
"servers": {
"douanecode-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"douanecode-mcp"
],
"env": {
"DOUANECODE_API_KEY": "${input:douanecode-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs