MCP Hub
Back to servers

adif-mcp

ADIF 3.1.6 parser and validator for amateur radio QSO logs. Full spec coverage.

Registry
Stars
2
Updated
Mar 6, 2026
Validated
Mar 8, 2026

Quick Install

uvx adif-mcp

adif-mcp

Core Model Context Protocol (MCP) server for Amateur Radio Logging, built on the ADIF 3.1.6 specification.

Overview

adif-mcp gives AI agents safe, typed access to Amateur Radio logging data. It validates and parses ADIF records, searches the full ADIF 3.1.6 specification (fields, enumerations, data types), and provides geospatial utilities for Maidenhead locators. It also provides persona management and keyring-backed credential storage used by the qso-graph family of MCP servers.

Made with Python License: GPL-3.0 ADIF 3.1.6 PyPI CI Docs

Quick Start

pip install adif-mcp

Configure Your MCP Client

adif-mcp works with any MCP-compatible client. Add the server config and restart -- tools appear automatically.

Claude Desktop

Add to claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):

{
  "mcpServers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

Claude Code

Add to .claude/settings.json:

{
  "mcpServers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

ChatGPT Desktop

Configure via Settings > Apps & Connectors, or in your agent definition:

{
  "mcpServers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

Cursor

Add to .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

VS Code / GitHub Copilot

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

Gemini CLI

Add to ~/.gemini/settings.json (global) or .gemini/settings.json (project):

{
  "mcpServers": {
    "adif": {
      "command": "adif-mcp"
    }
  }
}

Tools

adif-mcp exposes 8 tools via the Model Context Protocol:

CategoryToolDescription
Validationvalidate_adif_recordValidate a raw ADIF string against the 3.1.6 spec
Validationparse_adifStreaming parser for large ADIF files with pagination
Specread_specification_resourceRetrieve raw JSON for any spec module (band, mode, fields)
Speclist_enumerationsList all ADIF enumerations with entry counts
Specsearch_enumerationsSearch enumeration records by keyword
Geospatialcalculate_distanceGreat Circle distance (km) between two Maidenhead locators
Geospatialcalculate_headingInitial beam heading (azimuth) between two locators
Systemget_version_infoActive service version and ADIF spec version

Architecture

adif-mcp is the foundation package -- ADIF spec tools, persona management, and credential storage. Service integrations are separate MCP servers that depend on adif-mcp for identity and auth:

PackagePyPIWhat It Does
adif-mcpv0.9.6ADIF 3.1.6 spec tools + persona/credential management
lotw-mcpv0.2.0LoTW confirmations, QSOs, DXCC credits, user activity
eqsl-mcpv0.2.0eQSL inbox, verification, AG status, last upload
qrz-mcpv0.2.1Callsign lookup, DXCC, logbook status/fetch
hamqth-mcpv0.2.0Callsign lookup, DXCC, bio, activity, DX spots, RBN
pota-mcpv0.1.1Parks on the Air spots, park info, stats, schedules
sota-mcpv0.1.1Summits on the Air spots, alerts, summit info, stats
solar-mcpv0.1.1Space weather conditions, forecasts, band outlook
wspr-mcpv0.1.1WSPR beacon spots, propagation, band activity
iota-mcpv0.1.0Islands on the Air lookup, search, nearby groups

Authenticated servers use adif-mcp for persona lookup and keyring-backed credentials. Operators install only the servers they need. Each server is independently versioned with no unnecessary dependencies.

Compliance & Provenance

adif-mcp follows the ADIF Specification (currently 3.1.6) and uses registered Program IDs to identify all exports:

  • ADIF-MCP -- Core engine
  • ADIF-MCP-LOTW -- LoTW server
  • ADIF-MCP-EQSL -- eQSL server
  • ADIF-MCP-QRZ -- QRZ server

The project uses APP_ fields for provenance when augmenting records:

  • APP_ADIF-MCP_OP -- operation performed (normalize, validate, merge)
  • APP_ADIF-MCP-LOTW_ACTION -- LoTW server operation
  • APP_ADIF-MCP-EQSL_TIME -- timestamp of eQSL merge

License

GPL-3.0-or-later. See LICENSE for details.

Reviews

No reviews yet

Sign in to write a review