hamqth-mcp
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., "@hamqth-mcpLook up the callsign OK2CQR"
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.
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-mcpRelated MCP server: io.github.qso-graph/pota-mcp
Tools
Tool | Auth | Description |
| Yes | Callsign lookup (name, grid, DXCC, coordinates, QSL preferences) |
| No | Resolve DXCC entity from callsign or ADIF code |
| Yes | Fetch operator biography |
| Yes | Recent DX cluster, RBN, and logbook activity |
| No | Live DX cluster spots — filter by band and/or callsign |
| No | Reverse Beacon Network decodes — filter by band, mode, continent, callsign |
| No | Verify a QSO via HamQTH SAVP protocol |
| 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 hamqth3. 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-mcpMCP Inspector
hamqth-mcp --transport streamable-http --port 8005Then 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
Available Tools
8 toolsget_version_infoA
Get hamqth-mcp service version and upstream HamQTH API version.
Returns the running PyPI version of hamqth-mcp and the HamQTH.com API contract in use. Use this to confirm fleet alignment across MCP deployments — agents can compare service_version and spec_version across servers to detect drift without going outside the MCP protocol.
Returns: service_name, service_version (PyPI), and spec_version (HamQTH API).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. The verb 'Get' implies read-only, but the description does not explicitly state non-destructive behavior or other traits. Minimal but sufficient.
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?
Description is front-loaded with purpose, concise at five sentences, and free of redundancy. Every sentence adds value.
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 zero parameters and presence of an output schema, the description fully covers what the tool does, what it returns, and when to use it. No gaps.
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?
Tool has zero parameters; baseline is 4 per rubric. No parameter documentation needed, description focuses on output, which 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 retrieves service and API versions, with specific return fields listed. It differentiates from sibling tools by focusing on version info rather than operational data.
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?
Explicitly states use case: confirming fleet alignment and detecting drift across servers. No exclusions or alternatives needed as it's unique among siblings, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_activityB
Get recent DX cluster, RBN, and logbook activity for a callsign.
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. | |
| callsign | Yes | 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 only says 'Get... activity' without disclosing any behavioral traits like rate limits, authentication needs, or data freshness. Minimal disclosure beyond the action.
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 conveys the tool's purpose without redundancy. 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 simple nature of the tool, the presence of an output schema, and full schema parameter coverage, the description is adequate. It could mention what the returned data looks like, but the output schema handles that. Slightly incomplete without usage 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 coverage is 100% with descriptions for both parameters. The description adds context by mentioning 'recent DX cluster, RBN, and logbook activity', which clarifies the callsign's role, but does not elaborate on the persona parameter beyond the schema.
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 it retrieves recent DX cluster, RBN, and logbook activity for a callsign. It distinguishes itself from sibling tools like hamqth_dx_spots and hamqth_rbn by combining multiple data sources, but could be more explicit about its unique scope.
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?
No guidance is provided on when to use this tool versus alternatives such as hamqth_dx_spots or hamqth_rbn. The description only states what it does, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_bioB
Fetch an operator's biography from HamQTH.
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. | |
| callsign | Yes | Callsign to look up. |
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 present, so the description must carry the full burden. It merely states 'Fetch... biography' without disclosing behavioral traits such as read-only nature, authentication needs, or any side effects. The implied read-only operation is not explicitly confirmed.
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, front-loaded sentence with no unnecessary words. It efficiently conveys the action and resource.
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 output schema exists, the description does not need to explain return values. However, it could provide more context, such as prerequisites (e.g., valid persona configuration) or the type of biography content.
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?
Both parameters (persona and callsign) are fully described in the input schema with 100% coverage. The description adds no additional meaning beyond what the schema already provides.
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: fetching an operator's biography from HamQTH. It uses a specific verb (Fetch) and resource (biography), distinguishing it from siblings like hamqth_lookup or hamqth_activity.
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?
No guidance is provided on when to use this tool versus alternatives. The description lacks explicit context for when to choose this over similar sibling tools like hamqth_lookup or hamqth_dxcc.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_dxccA
Resolve a DXCC entity from a callsign or ADIF entity code.
Public endpoint — no authentication required.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Callsign (e.g., VP8PJ) or ADIF entity code (e.g., 291). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that it's a public endpoint without authentication, but does not mention idempotency, rate limits, or data freshness. One behavioral aspect is disclosed, but more would be beneficial.
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?
Two sentences, zero wasted words. The most important information (what it does, inputs, auth requirement) is front-loaded. Text is highly scannable.
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?
Tool is simple with one parameter and an output schema. Description covers purpose and auth requirement. For a simple resolver, this is nearly complete. Missing details like error handling or output format are likely covered by output schema.
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% for the single parameter, and the description verbatim matches the schema's description. No additional semantics or examples are added beyond what the schema already provides.
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?
Description clearly states the tool resolves a DXCC entity from a callsign or ADIF entity code. Verb and resource are specific, and it distinguishes from sibling tools like hamqth_lookup and hamqth_dx_spots by focusing solely on DXCC entity resolution.
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?
No explicit when-to-use or alternatives provided. The phrase 'Public endpoint — no authentication required' implies it's safe and accessible, but lacks guidance on when to prefer this over siblings like hamqth_lookup or hamqth_dx_spots.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_dx_spotsA
Live DX cluster spots from HamQTH (public, no auth required).
Spots update every ~15 seconds. Max 200 spots per request.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of spots to return (default 60, max 200). | |
| band | No | Optional ADIF band filter (e.g., "20M", "40M"). | |
| call | No | Optional callsign filter — matches spotted call or spotter (case-insensitive, e.g., "3Y0K"). Pulls max spots and filters client-side since the API does not support server-side filtering. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond the input schema: it is public, no auth required, updates every ~15 seconds, and notes client-side filtering for the 'call' parameter. These details compensate for the lack of 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?
Two short sentences with no waste. Purpose is stated first ('Live DX cluster spots from HamQTH'), followed by key behavioral details. Every sentence earns its place.
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?
The description covers the tool's purpose, data source, update interval, maximum results, and filtering options. An output schema exists to explain return values, so the description is adequately complete for this simple tool.
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 coverage is 100%, but the description adds value: for 'limit', it reiterates max 200; for 'call', it clarifies it matches spotted call or spotter, is case-insensitive, and performs client-side filtering. This goes beyond the schema's parameter descriptions.
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 'Live DX cluster spots from HamQTH' with 'public, no auth required', specifying the verb (spots) and resource (HamQTH). This differentiates it from sibling tools like hamqth_lookup or hamqth_activity, which serve different purposes.
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 live DX spots with context on update frequency (every ~15 seconds) and maximum results (200). It does not explicitly state when not to use it or provide alternatives, but the sibling names offer enough differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_lookupB
Look up a callsign on HamQTH (free, no subscription required).
Returns name, grid, DXCC, coordinates, QSL preferences, and more. Field availability depends on what the operator has published.
| Name | Required | Description | Default |
|---|---|---|---|
| persona | Yes | Persona name configured in adif-mcp. | |
| callsign | Yes | Callsign to look up (e.g., OK2CQR). |
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 only states that field availability depends on operator publication, but misses key behavioral traits such as idempotency, destuctiveness, rate limits, or authentication needs. For a read-only lookup, this is a medium gap.
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?
Two sentences, front-loaded with purpose and value, no wasted words. Efficient and clear.
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?
Description mentions output fields and field availability variability. An output schema exists, so return format is covered. Lacks error handling or prerequisite context, but acceptable for a straightforward lookup tool.
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 has 100% coverage with descriptions for both parameters (persona and callsign). The description does not add extra parameter meaning beyond listing output fields, which is already covered by schema. Baseline 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 'Look up a callsign on HamQTH' with specific verb and resource, and lists the types of information returned. However, it does not explicitly distinguish from sibling tools like hamqth_bio or hamqth_dxcc that focus on specific data.
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 basic context (free, no subscription) but lacks explicit guidance on when to use this tool vs alternatives like hamqth_bio or hamqth_dxcc. No when-not-to-use or error scenarios mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_rbnC
Reverse Beacon Network spots from HamQTH (public, no auth required).
| Name | Required | Description | Default |
|---|---|---|---|
| band | No | ADIF band numbers, comma-separated (e.g., "20,40"). | |
| mode | No | Filter by mode (CW, RTTY, PSK31, PSK63). | |
| cont | No | Filter by spotted station's continent (e.g., "EU", "NA"). | |
| fromcont | No | Filter by receiver/skimmer continent. | |
| age | No | Maximum age in seconds. | |
| call | No | Optional callsign filter — matches spotted station (case-insensitive, e.g., "3Y0K"). Filtered client-side. |
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, description adds 'public, no auth required' which clarifies access requirements. However, behavioral aspects like data freshness, rate limits, output behavior are not disclosed. Output schema exists but description adds minimal behavioral 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?
One sentence, to the point, but overly terse given the number of parameters and potential filtering options. Could provide more structure without being verbose.
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?
Tool has 6 optional parameters and output schema, yet description provides only source and access info. Missing context on default behavior (no params returns all?), typical usage patterns, or how the output is structured. Insufficient for a complete understanding.
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 each parameter has its own description. The tool description does not add additional meaning beyond what the schema provides. Baseline 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?
Description clearly states tool provides Reverse Beacon Network spots from HamQTH, which differentiates it from sibling DX spots tool. However, it does not explicitly distinguish from hamqth_dx_spots, leaving room for confusion.
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?
Description only mentions that it's public and no auth required. No guidance on when to use vs alternatives like hamqth_dx_spots or other sibling tools. No context on filtering or typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hamqth_verify_qsoA
Verify a QSO via HamQTH SAVP protocol (public, no auth required).
Checks if a QSO exists in HamQTH's database for both parties.
| Name | Required | Description | Default |
|---|---|---|---|
| mycall | Yes | Your callsign (e.g., "KI7MT"). | |
| hiscall | Yes | Other station's callsign (e.g., "OK2CQR"). | |
| date | Yes | QSO date in YYYYMMDD format (e.g., "20260305"). | |
| band | Yes | Band (e.g., "20M", "40M"). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that the tool is public and requires no authentication, and that it checks QSO existence for both parties. No side effects or rate limits mentioned, but the operation is simple and read-only, so transparency is adequate.
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?
Two focused sentences with no redundant information; efficient and front-loaded with core purpose.
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 no annotations, the description covers purpose, authentication status, and database scope. The output schema exists and is not required in description. Adequate for a simple verification tool.
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?
All 4 parameters are documented in the input schema with clear descriptions; the description adds no additional semantic detail beyond referencing the protocol (SAVP), so no extra value beyond 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 specifies the action 'verify a QSO' and the resource 'HamQTH database', distinguishing it from sibling tools like hamqth_lookup or hamqth_dxcc which serve different purposes.
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?
No explicit guidance on when to use this tool versus alternatives; no exclusions or prerequisites mentioned beyond stating it's public and requires no auth.
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.
8 tool updates
v0.4.1- First observed
get_version_info - First observed
hamqth_activity - First observed
hamqth_bio - First observed
hamqth_dx_spots - First observed
hamqth_dxcc - First observed
hamqth_lookup - First observed
hamqth_rbn - First observed
hamqth_verify_qso
TDQS
Each tool targets a distinct type of information: version, activity, biography, DXCC, DX spots, callsign lookup, RBN spots, and QSO verification. No overlapping purposes.
All tools follow a consistent hamqth_<descriptive_noun> pattern, making them predictable and easy to navigate.
8 tools cover the core functionality of the HamQTH interface without being excessive or insufficient.
Covers all major lookup and activity features, but lacks tools for advanced search or user account interaction, which are not essential for the scope.
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
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Related MCP Servers
- 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
- AlicenseAqualityDmaintenanceMCP server for Summits on the Air (SOTA) — live spots, activation alerts, summit info, and nearby summits through any MCP-compatible AI assistant.5GPL 3.0
- AlicenseAqualityDmaintenanceMCP server for ARRL Logbook of The World (LoTW) that enables querying confirmations, uploaded QSOs, DXCC credits, and user activity through any MCP-compatible AI assistant. Part of the qso-graph project, it is read-only and requires LoTW credentials for authenticated tools.61GPL 3.0
Appeared in Searches
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/hamqth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server