Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for HamQTH.com — callsign lookup, DX cluster spots, Reverse Beacon Network, DXCC resolution, and more through any MCP-compatible AI assistant.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'hamqth-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked hamqth-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
MCP Security Weekly
Get CVE alerts and security updates for Hamqth MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
pip install hamqth-mcp
| 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) |
Sign up at hamqth.com — it's free, no subscription required.
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
hamqth-mcp works with any MCP-compatible client. Add the server config and restart — tools appear automatically.
Add to claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows):
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Add to .claude/settings.json:
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Add to .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
Add to ~/.gemini/settings.json (global) or .gemini/settings.json (project):
{
"mcpServers": {
"hamqth": {
"command": "hamqth-mcp"
}
}
}
"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"
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
hamqth-mcp --transport streamable-http --port 8005
Then open the MCP Inspector at http://localhost:8005.
git clone https://github.com/qso-graph/hamqth-mcp.git
cd hamqth-mcp
pip install -e .
GPL-3.0-or-later