pypi hamqth-mcpstdioupdated 3mo ago
MCP server for HamQTH.com — callsign lookup, DX cluster spots, Reverse Beacon Network, DXCC resolution, and more through any MCP-compatible AI assistant.
What can you do with hamqth mcp?
hamqth-mcp
MCP server for HamQTH.com — callsign lookup, DX cluster spots, Reverse Beacon Network, DXCC resolution, and more through any MCP-compatible AI assistant.
Part of the qso-graph project. Authenticated tools use qso-graph-auth for persona and credential management.
Install
pip install hamqth-mcp
Tools
| Tool | Auth | Description |
|---|---|---|
hamqth_lookup |
Yes | Callsign lookup (name, grid, DXCC, coordinates, QSL preferences) |
hamqth_dxcc |
No | Resolve DXCC entity from callsign or ADIF code |
hamqth_bio |
Yes | Fetch operator biography |
hamqth_activity |
Yes | Recent DX cluster, RBN, and logbook activity |
hamqth_dx_spots |
No | Live DX cluster spots — filter by band and/or callsign |
hamqth_rbn |
No | Reverse Beacon Network decodes — filter by band, mode, continent, callsign |
hamqth_verify_qso |
No | Verify a QSO via HamQTH SAVP protocol |
get_version_info |
No | Service version + upstream HamQTH API version (fleet identity attestation) |
Quick Start
1. Create a free HamQTH account
Sign up at hamqth.com — it's free, no subscription required.
2. Set up credentials
hamqth-mcp uses adif-mcp personas for credential management:
# Install adif-mcp if you haven't
pip install adif-mcp
# Create a persona and add HamQTH credentials
adif-mcp persona create ki7mt --callsign KI7MT
adif-mcp persona provider ki7mt hamqth --username KI7MT
adif-mcp persona secret ki7mt hamqth
3. Configure your MCP client
hamqth-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": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
ChatGPT Desktop
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Cursor
Add to .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
VS Code / GitHub Copilot
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Gemini CLI
Add to ~/.gemini/settings.json (global) or .gemini/settings.json (project):
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
4. Ask questions
"Look up the callsign OK2CQR"
"What DXCC entity is VP8PJ?"
"Show me the biography for OK2CQR"
"What's the recent activity for KI7MT?"
"Show me DX spots for 3Y0K"
"What RBN decodes are there for 3Y0K on CW?"
"Show me 20m DX spots"
"Verify my QSO with OK2CQR on 20m on March 5"
Testing Without Credentials
The DXCC tool (hamqth_dxcc) works without any credentials — it uses a public endpoint.
For testing all tools without a HamQTH account:
HAMQTH_MCP_MOCK=1 hamqth-mcp
MCP Inspector
hamqth-mcp --transport streamable-http --port 8005
Then open the MCP Inspector at http://localhost:8005.
Development
git clone https://github.com/qso-graph/hamqth-mcp.git
cd hamqth-mcp
pip install -e .
License
GPL-3.0-or-later
Install
Add hamqth mcp to your client. Pick the one you use.
claude mcp add hamqth-mcp -- uvx hamqth-mcpcodex mcp add hamqth-mcp -- uvx hamqth-mcpamp mcp add hamqth-mcp -- uvx hamqth-mcp{
"mcpServers": {
"hamqth-mcp": {
"command": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"hamqth-mcp": {
"command": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"hamqth-mcp","command":"uvx","args":["hamqth-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"hamqth-mcp": {
"command": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"hamqth-mcp": {
"command": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"hamqth-mcp": {
"command": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"hamqth-mcp": {
"type": "local",
"command": "uvx",
"args": [
"hamqth-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"hamqth-mcp": {
"command": {
"path": "uvx",
"args": [
"hamqth-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx hamqth-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 tools
hamqth mcp exposes 8 tools to a connected agent.
- hamqth_lookup
- Yes
- hamqth_dxcc
- No
- hamqth_bio
- Yes
- hamqth_activity
- Yes
- hamqth_dx_spots
- No
- hamqth_rbn
- No
- hamqth_verify_qso
- No
- get_version_info
- No
Score
62 / 100
Good
- Documentation22/25
- Maintenance13/25
- Trust9/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 108 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.2.0Latest | Mar 6, 2026 |