aprs-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., "@aprs-mcpsend an APRS message to ZL1ABC saying hello"
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.
aprs-mcp
Model Context Protocol (MCP) server exposing the APRS-IS network as tools for
any LLM agent (opencode, Claude Desktop, Cursor, Windsurf, generic MCP
clients). Built on aprslib and fastmcp.
APRS transmissions are public. Only transmit with a valid amateur-radio callsign and in accordance with the rules that apply in your jurisdiction.
Tools
Tool | Purpose |
| List the APRS commands exposed by this MCP server |
| Send an APRS message (max ~60 chars) |
| Last known position, aprs.fi API first, live stream fallback |
| Stations transmitting within a radius |
| Stream raw or parsed packets against an APRS-IS filter |
aprs_listen filter syntax
Example | Meaning |
| Station NOCALL |
| Radius filter around lat/lon, 50 km |
| Messages to/from NOCALL |
| Positions and objects only |
Related MCP server: A2A Client MCP Server
Requirements
Requires Python 3.11+ and uv.
Installation
git clone https://github.com/gflerm/aprs-mcp.git
cd aprs-mcp
uv sync
cp credentials.example credentialsOn Windows PowerShell, the included installer creates the virtual environment and credentials template:
.\install.ps1MCP client configuration
Codex
Register the local STDIO server globally:
codex mcp add aprs -- ".venv\Scripts\aprs-mcp.exe"On macOS or Linux, use .venv/bin/aprs-mcp instead. Restart Codex after
registration, then run aprs_cmd_list to verify the connection.
Other clients
opencode — add to ~/.config/opencode/opencode.json:
{
"mcp": {
"aprs": {
"type": "local",
"command": [".venv/bin/aprs-mcp"],
"enabled": true
}
}
}Claude Desktop — add to claude_desktop_config.json under mcpServers.
Any other MCP client — point it at the mcp stdio transport with command
.venv/bin/aprs-mcp (Windows: .venv\Scripts\aprs-mcp.exe).
Restart the agent after registering the server.
Credentials
The server reads network settings and station identity from a plain
key=value file named credentials in the project. Copy
credentials.example to credentials and fill in your own values.
The server looks for credentials in this order:
Next to the installed module (site-packages)
The project root (the checkout / install directory)
The current working directory
Existing environment variables always win; the file never overrides them.
Populate the credentials file as follows:
Key | Type | Meaning |
| required | Your base callsign, e.g. |
| required | APRS-IS passcode for the callsign. Use |
| optional | APRS-IS server, default |
| optional | Default |
| optional | aprs.fi API key for fast |
| optional | NTP server for local timezone, default |
Getting your passcode. The passcode is a one-way hash of your base
callsign — generate it once with the APRSPASS calculator shipped inside
aprslib:
python -c "from aprslib import passcode; print(passcode('ZL1XXXX'))"Then write the result into credentials:
APRS_CALLSIGN=ZL1XXXX
APRS_PASSCODE=12345
APRS_HOST=euro.aprs2.net
APRS_PORT=14580Optionally add your aprs.fi key (free, low-volume) so aprs_position
answers without waiting on the live stream.
credentials is your real file. credentials.example is the committed
template. Never commit credentials.
Development
Install the project in its managed virtual environment:
uv sync
uv run python -m aprs_mcp.serverThe MCP transport uses standard input/output. Client logs and diagnostics must go to standard error so they do not corrupt the protocol stream.
License
Released under the MIT License.
This server cannot be installed
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 Servers
- MIT
- FlicenseAqualityDmaintenanceAn MCP server that enables LLMs to interact with Agent-to-Agent (A2A) protocol compatible agents, allowing for sending messages, tracking tasks, and receiving streaming responses.528
- Alicense-qualityDmaintenanceAn MCP server that publishes CLI tools on your machine for discoverability by LLMs81MIT
- AlicenseAqualityBmaintenanceAn MCP server that exposes WiGLE.net wardriving lookups as tools for LLMs, enabling searches and details for WiFi networks, Bluetooth devices, and cell towers.81MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
MCP server for AI dialogue using various LLM models via AceDataCloud
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/gflerm/aprs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server