Skip to main content

Discord

Badges
Build Nox semantic-release PyPI Read the Docs
Tests coverage pre-commit asv
Standards SemVer 2.0.0 Conventional Commits
Code uv Ruff Nox Checked with mypy
Repo GitHub issues GitHub stars GitHub license All Contributors Contributor Covenant

RepeaterBook Python Client

Unofficial project. RepeaterBook Python Client is an independent, community-maintained library and MCP server, and is not affiliated with, endorsed by, or officially supported by RepeaterBook.com. "RepeaterBook" is a trademark of its respective owner. For the official website and API, visit https://repeaterbook.com/.

Welcome to the RepeaterBook Python Client documentation!

RepeaterBook Python Client is an unofficial, third-party Python library and Model Context Protocol (MCP) server that provides a powerful and convenient interface to the RepeaterBook.com API — the world's largest database of amateur radio repeaters. Use it as a library to programmatically download, query, and analyze repeater data, or run the bundled MCP server to give AI agents and LLM tools the same repeater lookup capabilities.

Features

  • Easy API Access: Download repeater data from RepeaterBook.com with a simple async interface
  • Unofficial MCP Server: Ship repeater sync, geographic search, and lookup to any MCP client as three typed tools — see the MCP Server guide
  • Local Database: Store repeater information in a local SQLite database for fast queries
  • Geographic Queries: Find repeaters near a location using distance-based filtering
  • Band Filtering: Query repeaters by frequency band (2m, 70cm, etc.)
  • Digital Mode Support: Filter by DMR, P25, NXDN, and other digital modes
  • Smart Caching: Automatic caching of API responses to reduce load and improve performance
  • Type Safe: Fully typed with mypy for excellent IDE support
  • Async/Await: Non-blocking I/O for efficient API operations

Quick Example

This library requires a per-user RepeaterBook API token. Request access, generate your token, and expose it as the REPEATERBOOK environment variable (for example export REPEATERBOOK="rbuapp_...").

import asyncio
import os
from repeaterbook import RepeaterBook, Repeater
from repeaterbook.services import RepeaterBookAPI
from repeaterbook.models import ExportQuery, Status
from repeaterbook.utils import LatLon, Radius
from repeaterbook.queries import filter_radius, square, band, Bands
import pycountry

async def find_nearby_repeaters():
    # Download repeater data
    api = RepeaterBookAPI(app_token=os.environ["REPEATERBOOK"])
    brazil = pycountry.countries.get(name="Brazil")
    repeaters = await api.download(query=ExportQuery(countries={brazil}))

    # Store in local database
    rb = RepeaterBook()
    rb.populate(repeaters)

    # Find DMR repeaters within 50km of São Paulo
    sao_paulo = LatLon(lat=-23.5505, lon=-46.6333)
    radius = Radius(origin=sao_paulo, distance=50)

    nearby = rb.query(
        square(radius),
        Repeater.dmr_capable == True,
        Repeater.operational_status == Status.ON_AIR,
        band(Bands.CM_70)  # 70cm band
    )

    filtered = filter_radius(nearby, radius)

    # Display results (filter_radius returns repeaters sorted by distance)
    from haversine import haversine
    for rep in filtered[:5]:
        distance = haversine(radius.origin, (rep.latitude, rep.longitude), unit=radius.unit)
        print(f"{distance:.1f}km - {rep.frequency:.4f} MHz - {rep.callsign}")

asyncio.run(find_nearby_repeaters())

Quick Example (MCP)

Prefer to drive RepeaterBook from an AI agent? The unofficial MCP server ships as the repeaterbook-mcp console script behind the mcp extra. Point your MCP client at uvx and nothing needs installing up front:

{
  "mcpServers": {
    "repeaterbook": {
      "command": "uvx",
      "args": ["--from", "repeaterbook[mcp]", "repeaterbook-mcp"],
      "env": {
        "REPEATERBOOK_WORKING_DIR": "~/.repeaterbook",
        "REPEATERBOOK_APP_CONTACT": "you@example.com",
        "REPEATERBOOK_APP_TOKEN": "rbuapp_..."
      }
    }
  }
}

That exposes three tools — sync_repeaters, search_repeaters, and get_repeater — returning a stable, source-agnostic repeater spec. See the MCP Server guide for the full tool reference, filter vocabulary, and configuration options.

Documentation

Read the full documentation

Read RepeaterBook.com's official API documentation for more information about the upstream API.

Use Cases

  • AI Agents & Assistants: Let an LLM look up repeaters conversationally over MCP
  • Trip Planning: Find repeaters along travel routes
  • Emergency Communications: Identify emergency-capable repeaters
  • Radio Programming: Generate codeplugs for DMR and other digital radios
  • Coverage Analysis: Create coverage maps and statistics
  • Network Analysis: Analyze repeater networks and infrastructure
  • Mobile Apps: Build repeater directory applications
  • Research: Analyze amateur radio repeater trends and distributions

Related Projects

See Also

Installation

PyPI

repeaterbook is available on PyPI:

# With uv (recommended)
uv add repeaterbook

# With pip
pip install repeaterbook

# With Poetry
poetry add repeaterbook

MCP server

The MCP server lives behind the mcp extra. Most MCP clients should invoke it via uvx, with no install step at all:

# Run on demand, no install (what MCP clients should use)
uvx --from "repeaterbook[mcp]" repeaterbook-mcp

# Or install it persistently
uv tool install "repeaterbook[mcp]"

# Or add it as a project dependency
uv add "repeaterbook[mcp]"
pip install "repeaterbook[mcp]"

GitHub

You can also install the latest version of the code directly from GitHub:

# With uv
uv add git+https://github.com/MicaelJarniac/repeaterbook

# With pip
pip install git+https://github.com/MicaelJarniac/repeaterbook

# With Poetry
poetry add git+https://github.com/MicaelJarniac/repeaterbook

Requirements

  • Python 3.11 or higher
  • Dependencies are automatically installed:
    • aiohttp - Async HTTP client
    • anyio - Async compatibility layer
    • attrs - Immutable config classes
    • haversine - Distance calculations
    • loguru - Structured logging
    • pycountry - Country/region codes
    • pydantic - Data validation
    • sqlmodel - SQL ORM with type safety
    • tqdm - Progress bars
    • yarl - URL handling
  • The optional mcp extra additionally installs fastmcp and pydantic-settings

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

More details can be found in CONTRIBUTING.

Contributors ✨

Micael Jarniac
Micael Jarniac

🐛 💻 🖋 🔣 📖 💡 🤔 🚇 🚧 📆 💬 🔬 👀 🔧 ⚠️ 📓
ada mancini
ada mancini

🐛 🤔 📓
aaronjbrown
aaronjbrown

💻 📖 🤔 ⚠️

License

MIT

This project was created with the MicaelJarniac/crustypy template.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

repeaterbook-0.9.1.tar.gz (356.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

repeaterbook-0.9.1-py3-none-any.whl (44.0 kB view details)

Uploaded Python 3

File details

Details for the file repeaterbook-0.9.1.tar.gz.

File metadata

  • Download URL: repeaterbook-0.9.1.tar.gz
  • Upload date:
  • Size: 356.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for repeaterbook-0.9.1.tar.gz
Algorithm Hash digest
SHA256 5da91bbda7e3a18c916f802861d4a5abd7bc264d559978127f5ec16dfd405e8e
MD5 2b60019842eca740167d6be794cbf2f4
BLAKE2b-256 66b8f38b0f8a8019fb3910c376c219a6a6406979f8f080c9b650a3049542b8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for repeaterbook-0.9.1.tar.gz:

Publisher: semantic-release.yml on MicaelJarniac/repeaterbook

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file repeaterbook-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: repeaterbook-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for repeaterbook-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d2eebd0458a7210859fc63d55d0cdb42acfccd7e6b574c284dac9f29aad81c1c
MD5 51af11deab30ae685ec02948b98670ab
BLAKE2b-256 8d99cfa2420212e17a17ec33685fe6cd6b1eea7713459009aa227c5c7e56b45d

See more details on using hashes here.

Provenance

The following attestation bundles were made for repeaterbook-0.9.1-py3-none-any.whl:

Publisher: semantic-release.yml on MicaelJarniac/repeaterbook

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.11.3

2 files

0.11.2

2 files

0.11.1

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

This release

0.9.1 This release

2 files

0.9.0

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page