mcp nfe br for VS Code
io.github.cmendezs/mcp-nfe-br
MCP server for Brazilian e-invoicing: NF-e and NFC-e (modelo 55/65), schema 4.00, SEFAZ.
client:VS Code
transport:stdio
runtime:pypi
Install mcp nfe br in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "br-read-only",
"description": "BR_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "br-cte-read-only",
"description": "BR_CTE_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"mcp-nfe-br": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-nfe-br"
],
"env": {
"BR_READ_ONLY": "${input:br-read-only}",
"BR_CTE_READ_ONLY": "${input:br-cte-read-only}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs