n3fjp mcp for VS Code
io.github.sbrunner-atx/n3fjp-mcp
Log amateur-radio QSOs to N3FJP logging software over its TCP API.
client:VS Code
transport:stdio
runtime:pypi
Install n3fjp 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": {
"n3fjp-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"n3fjp-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