pypi pota-mcpstdioupdated 3mo ago
MCP server for Parks on the Air (POTA) — live activator spots, park info, activator/hunter stats, and scheduled activations through any MCP-compatible AI assistant.
What can you do with pota mcp?
pota-mcp
MCP server for Parks on the Air (POTA) — live activator spots, park info, activator/hunter stats, and scheduled activations through any MCP-compatible AI assistant.
Part of the qso-graph project. No authentication required — all POTA endpoints are public.
Install
pip install pota-mcp
Tools
| Tool | Description |
|---|---|
pota_spots |
Current activator spots with park/grid enrichment and optional filters |
pota_park_info |
Park details by reference code (name, grid, type, agencies, website) |
pota_park_stats |
Activation and QSO counts for a park |
pota_user_stats |
Activator/hunter stats by callsign |
pota_scheduled |
Upcoming scheduled activations |
pota_location_parks |
All parks in a state/province/country |
pota_nearby_parks |
Find parks near a point — great for 2-fer planning |
get_version_info |
Service version + upstream spec version (fleet identity attestation) |
Quick Start
No credentials needed — just install and configure your MCP client.
Configure your MCP client
pota-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": {
"pota": {
"command": "pota-mcp"
}
}
}
Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"pota": {
"command": "pota-mcp"
}
}
}
ChatGPT Desktop
{
"mcpServers": {
"pota": {
"command": "pota-mcp"
}
}
}
Cursor
Add to .cursor/mcp.json (project-level) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"pota": {
"command": "pota-mcp"
}
}
}
VS Code / GitHub Copilot
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"pota": {
"command": "pota-mcp"
}
}
}
Gemini CLI
Add to ~/.gemini/settings.json (global) or .gemini/settings.json (project):
{
"mcpServers": {
"pota": {
"command": "pota-mcp"
}
}
}
Ask questions
"What POTA activations are happening right now?"
"Tell me about park US-0001 — how many activations has it had?"
"What are K4SWL's POTA stats?"
"Show me all parks in Idaho"
"Are there any CW activators on 20m right now?"
"What activations are scheduled for tomorrow?"
Testing Without Network
For testing all tools without hitting the POTA API:
POTA_MCP_MOCK=1 pota-mcp
MCP Inspector
pota-mcp --transport streamable-http --port 8006
Then open the MCP Inspector at http://localhost:8006.
Development
git clone https://github.com/qso-graph/pota-mcp.git
cd pota-mcp
pip install -e .
License
GPL-3.0-or-later
Install
Add pota mcp to your client. Pick the one you use.
claude mcp add pota-mcp -- uvx pota-mcpcodex mcp add pota-mcp -- uvx pota-mcpamp mcp add pota-mcp -- uvx pota-mcp{
"mcpServers": {
"pota-mcp": {
"command": "uvx",
"args": [
"pota-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"pota-mcp": {
"command": "uvx",
"args": [
"pota-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"pota-mcp","command":"uvx","args":["pota-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"pota-mcp": {
"command": "uvx",
"args": [
"pota-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"pota-mcp": {
"command": "uvx",
"args": [
"pota-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"pota-mcp": {
"command": "uvx",
"args": [
"pota-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"pota-mcp": {
"type": "local",
"command": "uvx",
"args": [
"pota-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"pota-mcp": {
"command": {
"path": "uvx",
"args": [
"pota-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx pota-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 tools
pota mcp exposes 8 tools to a connected agent.
- pota_spots
- Current activator spots with park/grid enrichment and optional filters
- pota_park_info
- Park details by reference code (name, grid, type, agencies, website)
- pota_park_stats
- Activation and QSO counts for a park
- pota_user_stats
- Activator/hunter stats by callsign
- pota_scheduled
- Upcoming scheduled activations
- pota_location_parks
- All parks in a state/province/country
- pota_nearby_parks
- Find parks near a point — great for 2-fer planning
- get_version_info
- Service version + upstream spec version (fleet identity attestation)
Score
62 / 100
Good
- Documentation22/25
- Maintenance13/25
- Trust9/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 108 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Mar 6, 2026 |