contest mcp for VS Code
io.github.sbrunner-atx/contest-mcp
Log amateur-radio QSOs to N3FJP logging software over its TCP API.
client:VS Code
transport:stdio
runtime:pypi
Install contest mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "n3fjp-host",
"description": "N3FJP_HOST",
"password": true
},
{
"type": "promptString",
"id": "n3fjp-port",
"description": "N3FJP_PORT",
"password": true
},
{
"type": "promptString",
"id": "n3fjp-timeout",
"description": "N3FJP_TIMEOUT",
"password": true
},
{
"type": "promptString",
"id": "n3fjp-allow-db-wipe",
"description": "N3FJP_ALLOW_DB_WIPE",
"password": true
}
],
"servers": {
"contest-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"contest-mcp"
],
"env": {
"N3FJP_HOST": "${input:n3fjp-host}",
"N3FJP_PORT": "${input:n3fjp-port}",
"N3FJP_TIMEOUT": "${input:n3fjp-timeout}",
"N3FJP_ALLOW_DB_WIPE": "${input:n3fjp-allow-db-wipe}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs