Starlink dish MCP server — local gRPC monitoring, alerts, and control
Project description
starlink-blade-mcp
Local-first Starlink dish monitoring and control via the Model Context Protocol.
Talks directly to your dish over the local gRPC interface (192.168.100.1:9200) — no cloud API, no enterprise credentials, no internet dependency. Built on starlink-grpc-core, the same library that powers the Home Assistant Starlink integration.
Why this MCP?
| starlink-blade-mcp | starlink-enterprise-mcp | mcp-spacex | |
|---|---|---|---|
| Interface | Local gRPC (dish hardware) | Enterprise cloud API | Public SpaceX API |
| Auth required | None (LAN access only) | OAuth2 enterprise credentials | None |
| Works offline | Yes | No | No |
| Residential dish | Yes | Enterprise fleet only | N/A (satellite tracking) |
| Dish control | Reboot, stow, unstow | Read-only telemetry | None |
| Obstruction map | 12-wedge directional data | Aggregate only | None |
| Alert detail | 22 flags with descriptions | Basic status | None |
| Token efficiency | Statistical summaries | Raw JSON | Raw JSON |
Tools
Read (no authentication required)
| Tool | Description |
|---|---|
starlink_status |
Dish identity, state, connectivity, throughput, SNR, orientation |
starlink_alerts |
Active alert flags (22 types) with human-readable descriptions |
starlink_obstruction |
Obstruction fraction, 12-wedge directional map, timing |
starlink_history |
Throughput/latency/power as min/avg/max summary (configurable window) |
starlink_location |
GPS coordinates (requires opt-in in Starlink app) |
starlink_diagnostics |
Hardware version, firmware, GPS satellites, alert count |
Write (gated)
| Tool | Description |
|---|---|
starlink_reboot |
Restart the dish (2-5 min downtime) |
starlink_stow |
Stow dish face-down for storage/transport |
starlink_unstow |
Resume normal satellite tracking |
Write operations require dual gating:
STARLINK_WRITE_ENABLED=trueenvironment variableconfirm=trueparameter on each call
Quick Start
# Install
uv pip install starlink-blade-mcp
# Run (dish must be reachable at 192.168.100.1)
starlink-blade-mcp
# Or with uv
uvx starlink-blade-mcp
Claude Code
{
"mcpServers": {
"starlink": {
"command": "uvx",
"args": ["starlink-blade-mcp"],
"env": {
"STARLINK_WRITE_ENABLED": "false"
}
}
}
}
Claude Desktop
{
"mcpServers": {
"starlink": {
"command": "uvx",
"args": ["starlink-blade-mcp"],
"env": {
"STARLINK_DISH_ADDRESS": "192.168.100.1:9200",
"STARLINK_WRITE_ENABLED": "false"
}
}
}
}
Configuration
| Variable | Default | Description |
|---|---|---|
STARLINK_DISH_ADDRESS |
192.168.100.1:9200 |
Dish gRPC endpoint |
STARLINK_TIMEOUT |
10 |
gRPC timeout in seconds |
STARLINK_WRITE_ENABLED |
false |
Enable reboot/stow/unstow |
STARLINK_MCP_TRANSPORT |
stdio |
stdio or http |
STARLINK_MCP_HOST |
127.0.0.1 |
HTTP transport bind address |
STARLINK_MCP_PORT |
8770 |
HTTP transport port |
Network Requirements
The Starlink dish exposes an unauthenticated gRPC server at 192.168.100.1:9200 on the local network. Requirements:
- Device running the MCP must be on the Starlink LAN (or have a route to
192.168.100.1) - No credentials or API keys needed
- GPS location requires opt-in: Starlink app > Settings > Advanced > Debug Data
- The dish's 192.168.100.1 address is not configurable
Starlink router (default)
Works out of the box. The dish, router, and your devices are all on the same network.
Third-party router in bypass mode (UniFi, pfSense, etc.)
In bypass mode, the Starlink router hands its CGNAT WAN IP to your router's WAN interface. The dish management interface (192.168.100.1) sits on a separate /24 subnet on the WAN side — your router won't know how to reach it without a static route.
Static route configuration (UniFi example):
UniFi Network > Settings > Routing > Static Routes:
| Field | Value |
|---|---|
| Destination | 192.168.100.0/24 |
| Next Hop | WAN interface (Starlink-facing port) |
| Distance | 1 |
Some router firmware also requires a secondary IP on the WAN interface in the 192.168.100.0/24 range (e.g. 192.168.100.2/24) for traffic to egress on that subnet. This depends on whether your firmware handles interface-scoped routes correctly — UniFi has been inconsistent here across versions.
Once the route is in place, both 192.168.100.1:9200 (gRPC) and 192.168.100.1:80 (Starlink web UI) become reachable from your LAN.
Remote / headless sites
Run the MCP server on any host that can reach 192.168.100.1 — a local machine, a container on a NAS, or any device on the Starlink-connected network.
Security Model
- No credentials stored or transmitted — the dish gRPC endpoint is unauthenticated by design
- LAN-only access — the gRPC interface is not exposed to the internet
- Write operations double-gated — environment variable + per-call confirmation
- No telemetry or phone-home — all data stays local between the MCP server and the dish
- No cloud API dependency — works during internet outages (ideal for monitoring them)
Token Efficiency
The starlink_history tool returns statistical summaries (min/avg/max per metric) rather than raw per-second samples. A 900-second window produces ~8 lines of output vs ~5,400 lines of raw data.
History Summary (last 60 samples, 1s intervals)
metric min avg max unit
--------------------------------------------
ping_drop 0.0000 0.0021 0.0150
latency 22.1 34.5 89.2 ms
down 0.5 45.2 120.3 Mbps
up 0.1 8.4 25.1 Mbps
power 48.2 52.1 58.9 W
snr 7.8 9.2 10.1 dB
Development
git clone https://github.com/groupthink-dev/starlink-blade-mcp
cd starlink-blade-mcp
# Install with dev dependencies
make install-dev
# Run quality checks
make check
# Run tests (mocked — no dish required)
make test
# Run e2e tests (requires live dish on LAN)
make test-e2e
# Run with coverage
make test-cov
Sidereal Marketplace
This MCP is available as a certified plugin in the Sidereal Marketplace. Install directly from Settings > MCPs in the Sidereal app.
The plugin manifest provides:
- Credential-free setup (auto-discovers dish on LAN)
- Write operation toggle in Settings UI
- Connection test validation
- Custom dish address for non-standard networks
Roadmap
- Power save / sleep schedule control (read + set via
dish_power_saveproto) - Hardware self-test results (extended diagnostics from proto)
- Webhook triggers for alert state changes (Sidereal event dispatch)
- Firmware update tracking and notification
- Multi-dish support (mesh network with multiple terminals)
- Obstruction map visualization (SVG/image generation)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file starlink_blade_mcp-0.2.0.tar.gz.
File metadata
- Download URL: starlink_blade_mcp-0.2.0.tar.gz
- Upload date:
- Size: 97.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
623bfb50bafc1d44d8f8319215df69693be1821dc3009e0c5421fde0b1aa4b65
|
|
| MD5 |
882c6e30daa8303022124b56b6395933
|
|
| BLAKE2b-256 |
d2fb0626e44286f7bc05644ae04bd3f06b781077eb0f41d24dad63b7851031a3
|
Provenance
The following attestation bundles were made for starlink_blade_mcp-0.2.0.tar.gz:
Publisher:
publish.yml on Groupthink-dev/starlink-blade-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
starlink_blade_mcp-0.2.0.tar.gz -
Subject digest:
623bfb50bafc1d44d8f8319215df69693be1821dc3009e0c5421fde0b1aa4b65 - Sigstore transparency entry: 1396195656
- Sigstore integration time:
-
Permalink:
Groupthink-dev/starlink-blade-mcp@c2263f11b945f268ed7904668e81821c7021aa0b -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Groupthink-dev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c2263f11b945f268ed7904668e81821c7021aa0b -
Trigger Event:
push
-
Statement type:
File details
Details for the file starlink_blade_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: starlink_blade_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95e8579c394036cabb4e3396d105385528e61c5407570121809f6af1459cf9f0
|
|
| MD5 |
3b1f4ce8d9a9a069a6f4a725072cdcb8
|
|
| BLAKE2b-256 |
866415b5d408dbede72784621af97099e4b7e33f72ca4ff535426f1f137c48ae
|
Provenance
The following attestation bundles were made for starlink_blade_mcp-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on Groupthink-dev/starlink-blade-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
starlink_blade_mcp-0.2.0-py3-none-any.whl -
Subject digest:
95e8579c394036cabb4e3396d105385528e61c5407570121809f6af1459cf9f0 - Sigstore transparency entry: 1396195658
- Sigstore integration time:
-
Permalink:
Groupthink-dev/starlink-blade-mcp@c2263f11b945f268ed7904668e81821c7021aa0b -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Groupthink-dev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c2263f11b945f268ed7904668e81821c7021aa0b -
Trigger Event:
push
-
Statement type: