Milesight Gateway MCP Server
Enables managing applications, devices, profiles, multicast groups, and downlinks on a Milesight UG-series LoRaWAN gateway through natural language.
README
Milesight Gateway MCP Server
An MCP server that exposes the Milesight LoRaWAN gateway HTTP API as tools, so an MCP client (Claude Code, Claude Desktop, etc.) can manage applications, devices, profiles, multicast groups and downlinks on a Milesight UG-series gateway.
It talks to the gateway's embedded network server over HTTPS (port 8080), handling the firmware's AES-encrypted login and JWT bearer-token auth automatically.
Features
One tool per action across the gateway API surface:
- Applications — list / get / create / update / delete
- Devices — list / get / create / update / delete
- Device profiles — list / get / create / update / delete
- Multicast groups — list / get / create / delete, list/add/remove members
- Downlinks — enqueue / list / flush for both devices and multicast groups
- Gateways — list
- Packets — list / clear the frame log
- Payload codecs — list
- Settings — network-server settings, packet-forwarder network servers
Requirements
- Python ≥ 3.10
- Network access to a Milesight gateway (firmware that uses AES login, e.g. 60.0.0.42-r5 / 56.0.0.4 and later)
Install
With uv:
uv sync
Configure
Copy .env.example to .env and fill in your gateway details:
MILESIGHT_HOST=192.168.1.1
MILESIGHT_PORT=8080
MILESIGHT_USER=admin
MILESIGHT_PASSWORD=your-password
MILESIGHT_ORG_ID=1
MILESIGHT_VERIFY_TLS=false
.env is gitignored. The server reads these from the environment, so you can
also pass them however your MCP client injects env vars.
TLS: gateways ship a self-signed certificate, so verification is off by default. Set
MILESIGHT_VERIFY_TLS=trueonly with a trusted certificate.
Run
uv run milesight-mcp
The server speaks MCP over stdio.
Claude Code / Claude Desktop
Add to your MCP client config:
{
"mcpServers": {
"milesight": {
"command": "uv",
"args": ["run", "milesight-mcp"],
"cwd": "/path/to/milesight_mcp",
"env": {
"MILESIGHT_HOST": "192.168.1.1",
"MILESIGHT_USER": "admin",
"MILESIGHT_PASSWORD": "your-password"
}
}
}
}
Live smoke test
Runs read-only checks against the configured gateway (no writes):
uv run python test_live.py
How auth works
The gateway login endpoint expects the password AES-128-CBC encrypted
(fixed key/IV from the firmware) and Base64-encoded. On success it returns a JWT
valid for 24 hours, sent as Authorization: Bearer <jwt> on every request. The
client caches the token, refreshes it proactively, and re-logs-in automatically
on a 401.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.