wsjtx mcp for VS Code
io.github.sbrunner-atx/wsjtx-mcp
Operate WSJT-X (FT8/FT4/WSPR) from MCP clients over its UDP message protocol.
client:VS Code
transport:stdio
runtime:pypi
Install wsjtx mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wsjtx-callsign",
"description": "WSJTX_CALLSIGN",
"password": true
},
{
"type": "promptString",
"id": "wsjtx-host",
"description": "WSJTX_HOST",
"password": true
},
{
"type": "promptString",
"id": "wsjtx-port",
"description": "WSJTX_PORT",
"password": true
},
{
"type": "promptString",
"id": "wsjtx-multicast",
"description": "WSJTX_MULTICAST",
"password": true
},
{
"type": "promptString",
"id": "wsjtx-instance",
"description": "WSJTX_INSTANCE",
"password": true
}
],
"servers": {
"wsjtx-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"wsjtx-mcp"
],
"env": {
"WSJTX_CALLSIGN": "${input:wsjtx-callsign}",
"WSJTX_HOST": "${input:wsjtx-host}",
"WSJTX_PORT": "${input:wsjtx-port}",
"WSJTX_MULTICAST": "${input:wsjtx-multicast}",
"WSJTX_INSTANCE": "${input:wsjtx-instance}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs