eqsl-mcp
The eqsl-mcp server provides tools to interact with eQSL.cc, enabling amateur radio operators to manage electronic QSL cards and verify contacts through any MCP-compatible AI assistant.
Download incoming eQSLs (
eqsl_inbox): Retrieve eQSL confirmations sent to you, with filters for date (since, default last 30 days), confirmation status, and QTH profile for multi-QTH callsigns. (Requires authentication)Verify a specific QSO (
eqsl_verify): Check whether a particular contact exists in eQSL by providing both callsigns, band, date, and optionally mode. (No authentication required)Check AG status (
eqsl_ag_check): Look up whether a callsign holds Authenticity Guaranteed (AG) status, using a cached list refreshed periodically. (No authentication required)Download raw ADIF inbox (
eqsl_download): Export your complete eQSL inbox as raw ADIF text, optionally filtered by date, for import into a logging application. (Requires authentication)Check last upload date (
eqsl_last_upload): Find out when a configured persona last uploaded QSOs to eQSL. (Requires authentication)Get version info (
get_version_info): Retrieve the service version and upstream eQSL.cc endpoint version. (No authentication required)
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eqsl-mcpShow me all new eQSL cards received this week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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-mcpRelated MCP server: hamqth-mcp
Tools
Tool | Auth | Description |
| Yes | Download incoming eQSLs with date/confirmation filters |
| No | Check if a specific QSO exists in eQSL |
| No | Check if a callsign has AG (Authenticity Guaranteed) status |
| Yes | Download eQSL card images |
| No | When did a persona last upload to eQSL |
| 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 eqsl2. 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-mcpOr point to a local ADIF file:
EQSL_MCP_MOCK=1 EQSL_MCP_ADIF=/path/to/test.adi eqsl-mcpMCP Inspector
eqsl-mcp --transport streamable-http --port 8001Then 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 |
|
| DownloadInBox (RcvdSince) |
|
| 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 toolseqsl_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).
| Name | Required | Description | Default |
|---|---|---|---|
| callsign | Yes | The callsign to check. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. | |
| since | No | Only records added since this date (YYYY-MM-DD). Omit for full history. | |
| qth_nickname | No | QTH profile name (for multi-QTH callsigns). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. | |
| since | No | Only records added since this date (YYYY-MM-DD). Default: last 30 days. | |
| confirmed_only | No | Only return records you have confirmed back. | |
| unconfirmed_only | No | Only return records you have NOT confirmed. | |
| qth_nickname | No | QTH profile name (for multi-QTH callsigns). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| from_call | Yes | Sender's callsign. | |
| to_call | Yes | Receiver's callsign. | |
| band | Yes | Band (e.g., '20m'). | |
| qso_date | Yes | QSO date in YYYY-MM-DD format. | |
| mode | No | Mode (exact match — use 'USB' not 'SSB', 'PSK31' not 'PSK'). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
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.
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.
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.
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.
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.
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.
5 tool updates
v0.3.2- First observed
eqsl_ag_check - First observed
eqsl_download - First observed
eqsl_inbox - First observed
eqsl_last_upload - First observed
eqsl_verify
TDQS
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.
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.
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.
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
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
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
MCP server for AI dialogue using various LLM models via AceDataCloud
Official remote MCP server for Archivist AI TTRPG campaign memory: characters, sessions, and more.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn 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.2MIT
- AlicenseAqualityDmaintenanceMCP server for HamQTH.com — callsign lookup, DX cluster spots, Reverse Beacon Network, DXCC resolution, and more through any MCP-compatible AI assistant.8GPL 3.0
- AlicenseAqualityFmaintenanceMCP server for QRZ.com — callsign lookups, DXCC entity resolution, and logbook queries through any MCP-compatible AI assistant.62GPL 3.0
- AlicenseAqualityDmaintenanceMCP 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.81GPL 3.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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