Skip to main content
Glama
qso-graph

eqsl-mcp

by qso-graph

eqsl-mcp

MCP server for eQSL.cc — download incoming eQSLs, verify QSOs, check AG status, and query upload history through any MCP-compatible AI assistant.

Part of the qso-graph project. Uses qso-graph-auth for credential management.

Install

pip install eqsl-mcp

Related MCP server: hamqth-mcp

Tools

Tool

Auth

Description

eqsl_inbox

Yes

Download incoming eQSLs with date/confirmation filters

eqsl_verify

No

Check if a specific QSO exists in eQSL

eqsl_ag_check

No

Check if a callsign has AG (Authenticity Guaranteed) status

eqsl_download

Yes

Download eQSL card images

eqsl_last_upload

No

When did a persona last upload to eQSL

get_version_info

No

Service version + upstream eQSL.cc endpoint version (fleet identity attestation)

Quick Start

1. Set up credentials

eqsl-mcp uses qso-graph-auth personas for credential management:

# Install qso-graph-auth if you haven't
pip install qso-graph-auth

# Create a persona and add eQSL credentials
qso-auth persona create ki7mt --callsign KI7MT
qso-auth persona provider ki7mt eqsl --username KI7MT
qso-auth persona secret ki7mt eqsl

2. Configure your MCP client

eqsl-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": {
    "eqsl": {
      "command": "eqsl-mcp"
    }
  }
}

Claude Code

Add to .claude/settings.json:

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

ChatGPT Desktop

ChatGPT supports MCP via the OpenAI Agents SDK. Add under Settings > Apps & Connectors, or configure in your agent definition:

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

Cursor

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

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

VS Code / GitHub Copilot

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

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

Gemini CLI

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

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

3. Ask questions

"Show me all eQSLs received this week"

"How many unconfirmed eQSLs do I have on 20m FT8?"

"Does W1AW have AG status on eQSL?"

"Verify my QSO with KI7MT on 20m on March 1, 2026"

Testing Without Credentials

The two public tools (eqsl_verify and eqsl_ag_check) work without any credentials.

For eqsl_inbox testing, set the mock environment variable:

EQSL_MCP_MOCK=1 eqsl-mcp

Or point to a local ADIF file:

EQSL_MCP_MOCK=1 EQSL_MCP_ADIF=/path/to/test.adi eqsl-mcp

MCP Inspector

eqsl-mcp --transport streamable-http --port 8001

Then open the MCP Inspector at http://localhost:8001.

Development

git clone https://github.com/qso-graph/eqsl-mcp.git
cd eqsl-mcp
pip install -e .

Date Formats

eQSL uses different date formats across endpoints. eqsl-mcp normalizes everything — you always use YYYY-MM-DD:

You provide

eqsl-mcp sends

Endpoint

2026-03-01

202603010000

DownloadInBox (RcvdSince)

2026-03-01

03/01/2026

VerifyQSO (QSODate)

Mode Matching

eQSL requires exact mode matching. SSB won't match USB/LSB. PSK won't match PSK31. Use the exact mode logged by the other station.

License

GPL-3.0-or-later

Available Tools

5 tools
eqsl_ag_checkA

Check if a callsign has Authenticity Guaranteed (AG) status on eQSL.

Public, no auth required. Uses a cached copy of the AG member list (refreshed every 4 hours).

ParametersJSON Schema
NameRequiredDescriptionDefault
callsignYesThe callsign to check.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does so effectively. It discloses key behavioral traits: public access, no authentication required, and caching behavior with refresh frequency. This covers safety, access, and performance aspects, though it could add more on error handling or rate limits for a higher score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, followed by supporting details in two concise sentences. Every sentence adds value: the first defines the tool's function, and the second covers access and data behavior, with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (single parameter, no nested objects), the presence of an output schema (which handles return values), and the description's coverage of key behavioral aspects, it is complete enough for effective use. The description addresses access, data source, and caching without redundancy.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting the single 'callsign' parameter. The description adds no additional parameter details beyond what the schema provides, such as format examples or constraints. Baseline 3 is appropriate as the schema handles the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Check') and resource ('Authenticity Guaranteed (AG) status on eQSL'), with the callsign as the target. It distinguishes from siblings like 'eqsl_download' or 'eqsl_inbox' by focusing on AG status verification rather than file operations or inbox management.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for usage ('Public, no auth required') and mentions the data source ('cached copy of the AG member list, refreshed every 4 hours'), which helps determine when to use it. However, it does not explicitly state when to use alternatives like 'eqsl_verify' or exclude specific scenarios, keeping it from a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eqsl_downloadA

Download your complete eQSL inbox as raw ADIF text.

Returns the .adi file content — save to disk for import into your logger. Omit 'since' to download your entire inbox history.

ParametersJSON Schema
NameRequiredDescriptionDefault
personaYesPersona name configured in adif-mcp.
sinceNoOnly records added since this date (YYYY-MM-DD). Omit for full history.
qth_nicknameNoQTH profile name (for multi-QTH callsigns).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the tool's behavior by stating it returns '.adi file content' and instructs to 'save to disk for import into your logger', which adds useful context about output handling. However, it doesn't mention potential side effects, authentication requirements, rate limits, or error conditions that would be important for a download operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise with three sentences that each earn their place: the first states the core purpose, the second explains the return value and usage, and the third provides important guidance about the 'since' parameter. No wasted words, and the most critical information appears first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there's an output schema (which handles return value documentation) and 100% schema coverage for parameters, the description provides adequate context for this download operation. It explains what the tool does, what it returns, and key usage guidance. The main gap is the lack of behavioral details like authentication or error handling, but with output schema covering return values, this is reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value beyond the schema by mentioning the 'since' parameter's optional nature ('Omit for full history'), but doesn't provide additional semantic context about parameters like 'persona' or 'qth_nickname'. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Download your complete eQSL inbox') and the resource ('as raw ADIF text'), distinguishing it from sibling tools like eqsl_inbox (which likely shows inbox contents) and eqsl_ag_check/eqsl_last_upload/eqsl_verify (which perform different eQSL-related actions). The verb 'download' is precise and the output format is explicitly mentioned.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool ('download your complete eQSL inbox') and includes a specific usage note about omitting 'since' for full history. However, it doesn't explicitly contrast when to use this tool versus its siblings (like eqsl_inbox), which would be needed for a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eqsl_inboxB

Download incoming eQSLs (confirmations others have sent you).

ParametersJSON Schema
NameRequiredDescriptionDefault
personaYesPersona name configured in adif-mcp.
sinceNoOnly records added since this date (YYYY-MM-DD). Default: last 30 days.
confirmed_onlyNoOnly return records you have confirmed back.
unconfirmed_onlyNoOnly return records you have NOT confirmed.
qth_nicknameNoQTH profile name (for multi-QTH callsigns).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states the tool downloads data but doesn't disclose behavioral aspects like authentication requirements, rate limits, output format, pagination, or whether it's a read-only operation. The description is minimal and lacks critical operational context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core purpose and uses parentheses to add clarifying context without bloating the text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 parameters, no annotations, but 100% schema coverage and an output schema exists, the description is minimally adequate. It covers the basic purpose but lacks behavioral transparency and usage guidance that would be helpful for an AI agent, especially without annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all 5 parameters. The description adds no parameter-specific information beyond implying date filtering via 'incoming eQSLs', which aligns with the 'since' parameter. Baseline 3 is appropriate when schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Download') and resource ('incoming eQSLs') with specific scope ('confirmations others have sent you'). It distinguishes from siblings by focusing on incoming confirmations rather than uploads, verification, or AG checks, though it doesn't explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving confirmations sent to you, but provides no explicit guidance on when to use this tool versus alternatives like eqsl_download or eqsl_verify. No prerequisites, exclusions, or comparative context are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eqsl_last_uploadB

Check when a persona last uploaded QSOs to eQSL.

ParametersJSON Schema
NameRequiredDescriptionDefault
personaYesPersona name configured in adif-mcp.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool checks a timestamp ('when...last uploaded'), implying a read-only operation, but doesn't clarify if it requires authentication, has rate limits, or what happens if the persona doesn't exist. For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that efficiently conveys the tool's purpose without unnecessary words. It's front-loaded with the core action ('Check when...'), making it easy to understand at a glance. Every part of the sentence earns its place by specifying key details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (one parameter, no nested objects) and the presence of an output schema (which handles return values), the description is reasonably complete. It covers the basic purpose and parameter context, though it could benefit from more behavioral details given the lack of annotations. For a simple lookup tool, this is adequate but not exhaustive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the single parameter 'persona' documented as 'Persona name configured in adif-mcp.' The description doesn't add meaning beyond this, such as examples or constraints on persona names. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Check when a persona last uploaded QSOs to eQSL.' It specifies the verb ('check'), resource ('last uploaded QSOs'), and target system ('eQSL'). However, it doesn't explicitly differentiate from sibling tools like 'eqsl_verify' or 'eqsl_inbox', which might also involve checking eQSL status, so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools or contexts where this specific check is appropriate, such as monitoring upload frequency or troubleshooting sync issues. Without such guidance, users might struggle to choose between this and tools like 'eqsl_verify'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eqsl_verifyA

Check if a specific QSO exists in eQSL (public, no auth required).

ParametersJSON Schema
NameRequiredDescriptionDefault
from_callYesSender's callsign.
to_callYesReceiver's callsign.
bandYesBand (e.g., '20m').
qso_dateYesQSO date in YYYY-MM-DD format.
modeNoMode (exact match — use 'USB' not 'SSB', 'PSK31' not 'PSK').

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It discloses key behavioral traits: it's a read operation ('check'), requires no authentication ('no auth required'), and is publicly accessible ('public'). This covers safety and access, though it doesn't mention rate limits, error handling, or response format, which are gaps for a tool with no annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose ('Check if a specific QSO exists in eQSL') and adds essential context ('public, no auth required'). There is no wasted text, and it's appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema (implying return values are documented), no annotations, and high schema coverage, the description is reasonably complete. It covers purpose, access, and authentication, but lacks details on behavioral aspects like rate limits or error cases, which are minor gaps in an otherwise adequate context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so parameters are well-documented in the schema. The description adds no specific parameter semantics beyond implying the tool checks QSO existence based on inputs like callsigns and date. This meets the baseline of 3 since the schema handles parameter details, but the description doesn't enhance understanding of how parameters interact.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Check if a specific QSO exists in eQSL' with the verb 'check' and resource 'QSO in eQSL'. It distinguishes from siblings by specifying it's for verification (vs. download, inbox, etc.), though it doesn't explicitly name alternatives. The 'public, no auth required' adds context but doesn't fully differentiate from all siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for verifying QSO existence, and 'public, no auth required' suggests when authentication isn't needed. However, it doesn't explicitly state when to use this vs. alternatives like 'eqsl_ag_check' or 'eqsl_download', nor provide exclusions or prerequisites beyond the implied verification context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.3.2
    • First observedeqsl_ag_check
    • First observedeqsl_download
    • First observedeqsl_inbox
    • First observedeqsl_last_upload
    • First observedeqsl_verify

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: checking AG status, downloading inbox data, downloading incoming confirmations, checking last upload time, and verifying specific QSOs. There is no overlap in functionality, making tool selection unambiguous for an agent.

Naming Consistency5/5

All tool names follow a consistent 'eqsl_' prefix with descriptive suffixes (e.g., ag_check, download, inbox, last_upload, verify). This uniform snake_case pattern ensures predictability and readability across the tool set.

Tool Count5/5

With 5 tools, the server is well-scoped for managing eQSL interactions, covering key operations like status checks, data downloads, and verification. Each tool serves a specific, necessary function without bloat or redundancy.

Completeness4/5

The tool set covers core eQSL functionalities such as status verification, data retrieval, and upload tracking. A minor gap exists in lacking tools for uploading QSOs or managing outgoing confirmations, but agents can still perform essential read-only operations effectively.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that integrates with FastMail's JMAP API to manage mailboxes, search for emails, and send messages. It enables users to interact with their FastMail account for tasks like reading email content and managing folders through natural language.
    2
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for HamQTH.com — callsign lookup, DX cluster spots, Reverse Beacon Network, DXCC resolution, and more through any MCP-compatible AI assistant.
    8
    GPL 3.0
  • A
    license
    A
    quality
    F
    maintenance
    MCP server for QRZ.com — callsign lookups, DXCC entity resolution, and logbook queries through any MCP-compatible AI assistant.
    6
    2
    GPL 3.0
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for Parks on the Air (POTA) providing live activator spots, park details, activator/hunter stats, and scheduled activations through any MCP-compatible AI assistant.
    8
    1
    GPL 3.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/qso-graph/eqsl-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server