contest-mcp
Enables logging amateur-radio QSOs to N3FJP logging software via MCP tools, including automatic logging, dupe checking, and band/mode management.
README
contest-mcp
<!-- mcp-name: io.github.sbrunner-atx/contest-mcp -->
An MCP server for logging amateur-radio QSOs to N3FJP logging software — Amateur Contact Log and the 100-plus N3FJP contest loggers — from MCP-aware clients such as Claude Desktop.
Every program in the N3FJP suite shares one TCP control API. contest-mcp speaks
that protocol directly (Python's standard-library socket, no third-party
wrapper) and exposes it as a small set of logically-grouped MCP tools, so an
assistant can log contacts, read the log, run dupe checks, and manage band/mode
through plain language.
It is the logging half of an "operate → log" workflow; its sibling project
fldigi-mcp operates the radio.
Status: experimental (v0.1). Verified live against N3FJP's ARRL Field Day Contest Log, API version 2.2. The protocol is shared across the suite, but field sets vary per contest — confirm with the
fieldstool.
The project is named contest-mcp (not "n3fjp-mcp") to avoid any conflict with the N3FJP name and callsign. It is an independent project and is not affiliated with or endorsed by Affirmatech / N3FJP.
Highlights
- Automatic logging — the headline
logtool runs the real N3FJP flow: set the call →CALLTAB(dupe check + previous-contact lookup) → set the exchange →ENTER, surfacing the dupe response and the number of records added. - Broad coverage — read queries, field read/write, search/list, dupe and
entity checks, band/mode/frequency, direct database operations, and opt-in
push notifications, grouped into 9 tools (one permission each) plus an
n3fjp_callescape hatch for the long tail and future commands. - Safe by design for a tool that can touch your log database:
- Reads are marked read-only so clients can default them to Always Allow.
- Writes (logging, band/mode) default to Needs Approval.
- Destructive operations (add-direct, delete a record, raw SQL)
additionally require
confirm=true. - Whole-database wipes/overwrites are refused outright unless you flip a
dedicated, off-by-default
N3FJP_ALLOW_DB_WIPEswitch.
- Names match N3FJP — tools and fields mirror N3FJP's own terminology
(Action
ENTER,CALLTAB, theTXTENTRY…boxes, Class/Section, etc.). - No fragile dependencies — the only runtime dependency is the MCP SDK.
Requirements
To install the desktop extension (.mcpb):
- An N3FJP program running, with Settings → Application Program Interface →
"TCP API Enabled" checked (default API port
1100).
Claude Desktop's uv runtime supplies Python and the dependencies, so end users
do not install Python or uv themselves.
For development from source you additionally need Python 3.10+ and uv (and Node.js, only for the MCP Inspector).
Install
Easiest: one-click desktop extension
Download contest-mcp.mcpb from the latest
release, then in Claude
Desktop go to Settings → Extensions → Advanced settings → Install Extension…
and choose the file. A short settings form asks for the host/port (defaults to
127.0.0.1:1100). No terminal, no Python, no uv to install.
👉 New to this? Follow the step-by-step install guide.
From source (development)
git clone https://github.com/sbrunner-atx/contest-mcp.git
cd contest-mcp
uv sync
Then add it to Claude Desktop's config
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"contest": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/contest-mcp", "run", "contest-mcp"],
"env": { "N3FJP_HOST": "127.0.0.1", "N3FJP_PORT": "1100" }
}
}
}
Restart Claude Desktop and ask "What's the N3FJP status?".
Try it with the MCP Inspector
uv run mcp dev src/contest_mcp/server.py
Tools
Each tool is one permission and takes an operation argument.
| Tool | Default | Controls |
|---|---|---|
status |
read | snapshot: program, version, API version, QSO count, band/mode/frequency |
query |
read | program, qso_count, next_serial, log/settings/shared paths, qso_rate, band_mode_freq |
fields |
read | read one entry box, or list visible / all fields with values |
search |
read | list recent, search, dupecheck (no side effects), entity status |
log |
approval | log_qso (set call → CALLTAB → exchange → ENTER), set, set_many, calltab, enter, clear, focus |
bandmode |
approval | change_freq, set_band, set_mode, ignore_rig_polls |
notifications |
approval | enable / disable push events, drain buffered events |
database |
approval + confirm | add_direct, delete, raw sql, checklog, openlog, sqlclose |
n3fjp_call |
approval + confirm | escape hatch — send any raw command, incl. future ones |
The headline is log → log_qso:
log_qso call="W1AW" contest="field_day" exchange={"class":"2A","section":"CT"}
This sets the call, fires CALLTAB (dupe check), fills the exchange, sends
ENTER, and reports records added plus any dupe detail.
Configuration
| Variable | Default | Purpose |
|---|---|---|
N3FJP_HOST |
127.0.0.1 |
N3FJP API host |
N3FJP_PORT |
1100 |
N3FJP API port (the suite's default) |
N3FJP_TIMEOUT |
6 |
Socket/response timeout, seconds |
N3FJP_ALLOW_DB_WIPE |
off |
Danger. Allow whole-database delete/overwrite (raw SQL DROP/TRUNCATE/unscoped DELETE/UPDATE). Leave off unless you really mean it |
In the packaged desktop extension these appear as a settings form.
Safety model
Logging doesn't key a transmitter, so there is no transmit gate. The protection here is about your log database:
- Read operations (
status,query,fields,search) are marked read-only — clients can default them to Always Allow. - Write operations (
log,bandmode,notifications) default to Needs Approval; the client asks before each one. - Destructive operations in
database(add-direct, delete a record, raw SQL) and any state-changingn3fjp_calladditionally requireconfirm=true. - Whole-database operations — raw SQL that could delete or overwrite the
entire log (
DROP,TRUNCATE, aDELETE/UPDATEwith noWHERE) — are refused unlessN3FJP_ALLOW_DB_WIPEis on. This switch is separate from, and stricter than, the client's approval prompts, and carries a stern warning in the settings form. Back up your log before ever enabling it.
Wherever possible, contest-mcp leans on N3FJP's own validation (it dupe-checks
and reports oddities) and surfaces those responses rather than re-implementing
them.
Remote / contest-station setups
N3FJP need not run on the same machine. Point the server at it with
N3FJP_HOST/N3FJP_PORT. Keep the link on a trusted LAN — the API is
unauthenticated.
Documentation
📻 A field-tested N3FJP API reference (free community resource)
Building this server meant reverse-engineering and live-verifying the N3FJP TCP API, including several places where today's API (v2.2) differs from the public 0.9 documentation. We've written that up as a complete, human-readable guide and are sharing it freely to give back to the community:
- The N3FJP TCP API — A Field-Tested Reference
(PDF) — transport, every command grouped by area,
verified response examples, contest exchange fields, and a hard-won
gotchas section (the API vs. networking ports,
CMD_NOT_FOUND, commands removed since 0.9, theCALLTABEVENTlookup, and whyENTERcan report 0 yet still log in networked mode). - Machine-readable spec — the same information in a terse, structured command catalog suitable for code generation.
Corrections and additions are welcome — please open an issue or PR.
Project docs
- Install guide and Test plan.
Development
uv sync
uv run ruff check . # lint
uv run pytest # tests (no running N3FJP required)
python3 smoke_test.py 192.168.1.50 1100 # Phase 0: prove the link to N3FJP
The test suite covers the wire protocol, the operation maps and field catalog, type coercion, and the permission/confirm safety model; none of it requires a running N3FJP.
License
MIT © 2026 Stefan Brunner (AE5VG)
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。