battery erp for VS Code
io.github.icohangar-ops/battery-erp
Battery value-chain inventory MCP: lookup SKUs, status/reorder, bin-check, audited confirmation.
client:VS Code
transport:stdio
runtime:pypi
Install battery erp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "battery-erp-confirm-token",
"description": "BATTERY_ERP_CONFIRM_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "battery-erp-audit-log",
"description": "BATTERY_ERP_AUDIT_LOG",
"password": true
}
],
"servers": {
"battery-erp": {
"type": "stdio",
"command": "uvx",
"args": [
"battery-erp"
],
"env": {
"BATTERY_ERP_CONFIRM_TOKEN": "${input:battery-erp-confirm-token}",
"BATTERY_ERP_AUDIT_LOG": "${input:battery-erp-audit-log}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs