fldigi mcp for VS Code
io.github.sbrunner-atx/fldigi-mcp
Control fldigi (amateur-radio digital modes) over XML-RPC: modem, frequency, rig, log, transmit.
client:VS Code
transport:stdio
runtime:pypi
Install fldigi mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fldigi-callsign",
"description": "FLDIGI_CALLSIGN",
"password": true
},
{
"type": "promptString",
"id": "fldigi-host",
"description": "FLDIGI_HOST",
"password": true
},
{
"type": "promptString",
"id": "fldigi-port",
"description": "FLDIGI_PORT",
"password": true
},
{
"type": "promptString",
"id": "fldigi-band-guidance",
"description": "FLDIGI_BAND_GUIDANCE",
"password": true
},
{
"type": "promptString",
"id": "fldigi-region",
"description": "FLDIGI_REGION",
"password": true
}
],
"servers": {
"fldigi-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"fldigi-mcp"
],
"env": {
"FLDIGI_CALLSIGN": "${input:fldigi-callsign}",
"FLDIGI_HOST": "${input:fldigi-host}",
"FLDIGI_PORT": "${input:fldigi-port}",
"FLDIGI_BAND_GUIDANCE": "${input:fldigi-band-guidance}",
"FLDIGI_REGION": "${input:fldigi-region}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs