sigrok MCP Server for VS Code
io.github.kenosinc/sigrok-mcp-server
Wraps sigrok-cli for signal analysis: capture data, decode protocols, and query instruments.
client:VS Code
transport:stdio
runtime:oci
Install sigrok MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sigrok-cli-path",
"description": "SIGROK_CLI_PATH",
"password": true
},
{
"type": "promptString",
"id": "sigrok-timeout-seconds",
"description": "SIGROK_TIMEOUT_SECONDS",
"password": true
},
{
"type": "promptString",
"id": "sigrok-working-dir",
"description": "SIGROK_WORKING_DIR",
"password": true
}
],
"servers": {
"sigrok-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/kenosinc/sigrok-mcp-server:0.2.0"
],
"env": {
"SIGROK_CLI_PATH": "${input:sigrok-cli-path}",
"SIGROK_TIMEOUT_SECONDS": "${input:sigrok-timeout-seconds}",
"SIGROK_WORKING_DIR": "${input:sigrok-working-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs