SignalEDI for VS Code
io.github.signaledi/mcp-server
EDI parse, validate, send, inspect, and QuickBooks tools for MCP clients.
client:VS Code
transport:stdio
runtime:npm
Install SignalEDI in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "signaledi-api-key",
"description": "SIGNALEDI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "signaledi-base-url",
"description": "SIGNALEDI_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@signaledi/mcp-server"
],
"env": {
"SIGNALEDI_API_KEY": "${input:signaledi-api-key}",
"SIGNALEDI_BASE_URL": "${input:signaledi-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs