keenetic-mcp
Manages Keenetic routers, providing tools to list devices, manage static DHCP leases, rename devices, check WAN status, and reboot.
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., "@keenetic-mcpShow me the list of connected devices."
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.
keenetic-mcp
An MCP server that lets an AI assistant (Claude, or any MCP client) manage your Keenetic router in plain language — list connected devices, pin static DHCP leases, rename devices, check WAN status, and reboot.
It talks to the router's built-in RCI JSON API over HTTP, so there's no cloud, no third-party service, and nothing leaves your network. You run it yourself against your own router.
Tested against a Keenetic Hopper DSL (KN-3610). The RCI API is shared across the Keenetic line (Giga, Viva, Hopper, Ultra, …), so other models should work too. If you confirm one, please open an issue/PR to grow the list.
Why
Keenetic's RCI API is powerful but poorly documented, and its auth is a fiddly two-step MD5-challenge + SHA256 dance that trips people up for hours. This wraps the common device/lease/WAN operations behind clean MCP tools so you can just say "pin the Raspberry Pi to a static IP" and it happens.
Related MCP server: vyos-mcp
Tools
Tool | Type | What it does |
| read | Active DHCP lease table (ip / mac / name / remaining time) |
| read | Static reservations ( |
| read | Suggest a free IP for a new static reservation |
| read | WAN/internet status, WAN IP, uptime, CPU/memory |
| read | Port-forward / static NAT rules ( |
| write | Assign a fixed IP to a MAC (low-level — you supply the MAC) |
| write | ⭐ Find a device by IP/MAC/name and pin its current (or a given) IP in one step. Conflict-guarded. |
| write | ⭐ Set a device's persistent display name (the name shown in the web UI) |
| write | Remove a reservation |
| write | Reboot the router (only with |
Safety: write tools are off by default
Read tools always work. Write tools are disabled until you set KEENETIC_ENABLE_WRITES=1 in the server environment. This means a fresh install can look but not touch — no accidental reboots or lease changes while you explore. Even once enabled, write tools are guarded:
pin_devicerefuses if the target IP is already active on, or statically reserved to, a different device.Address-like identifiers (
"66") never fuzzy-match a device name (e.g.Room-66-Cam).Every write reads the RCI response back and reports
status:errorinstead of silently "succeeding".rebootrequires an explicitconfirm=True.
Install
Requires Python 3.9+.
The easy way — no clone, no venv. With uv installed, run it straight from GitHub; your MCP client launches it on demand (see Connecting an MCP client). To install it as a command instead:
uv tool install "git+https://github.com/karyaboyraz/keenetic-mcp"
# or: pipx install "git+https://github.com/karyaboyraz/keenetic-mcp"Then set your router password in the environment (KEENETIC_PASS) and run keenetic-router-mcp. By default it speaks stdio — the transport desktop MCP clients expect.
The installed command is
keenetic-router-mcp. The GitHub repo iskeenetic-mcp.
From source (for development or the systemd service):
git clone https://github.com/karyaboyraz/keenetic-mcp.git
cd keenetic-mcp
python3 -m venv .venv
.venv/bin/pip install .
cp .env.example .env
# edit .env: set KEENETIC_PASS (and KEENETIC_ENABLE_WRITES=1 if you want write tools)
.venv/bin/keenetic-router-mcpConfiguration
All configuration is via environment variables (see .env.example):
Variable | Default | Notes |
|
| Your router's web-admin address |
|
| Admin username |
| — | Required. Admin password |
|
| Set to |
|
|
|
|
| Bind address for |
|
| Bind port for |
Connecting an MCP client
stdio — the client launches the server (recommended)
Most clients (Claude Desktop, Claude Code, Cursor, …) start the server themselves and talk over stdio. With uv installed, no prior install step is needed — uvx fetches from GitHub and runs it. Add to your client's MCP config (claude_desktop_config.json, ~/.mcp.json, etc.):
{
"mcpServers": {
"keenetic": {
"command": "uvx",
"args": ["--from", "git+https://github.com/karyaboyraz/keenetic-mcp", "keenetic-router-mcp"],
"env": {
"KEENETIC_URL": "http://192.168.1.1",
"KEENETIC_PASS": "your-router-admin-password",
"KEENETIC_ENABLE_WRITES": "0"
}
}
}
}If you installed it as a command (uv tool install / pipx), use "command": "keenetic-router-mcp" with no args. Restart the client (MCP config isn't hot-reloaded), then ask: "list my router's devices".
http — connect to a running network service
If you run it as a long-lived service (KEENETIC_TRANSPORT=http, see Running as a service), point the client at the URL instead:
{
"mcpServers": {
"keenetic": {
"type": "http",
"url": "http://127.0.0.1:8905/mcp"
}
}
}Running as a service (Linux)
A keenetic-mcp.service systemd unit is included — it runs the server over HTTP (KEENETIC_TRANSPORT=http) so clients connect to it by URL. Put the repo at /opt/keenetic-mcp, create the venv there (python3 -m venv .venv && .venv/bin/pip install .), fill in .env, then:
sudo cp keenetic-mcp.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now keenetic-mcpHow the auth works
For anyone reusing the RCI API directly, this is the part that's hard to find. Keenetic uses a two-step challenge:
GET /auth→ returns401withX-NDM-RealmandX-NDM-Challengeheaders.Compute
md5 = MD5("<user>:<realm>:<pass>"), thensha = SHA256(challenge + md5).POST /authwith{"login": user, "password": sha}→ sets a session cookie.POST /rci/with alist[dict]command tree, using that cookie.
Write commands must be followed by [{"system":{"configuration":{"save":{}}}}] or they're lost on reboot. See server.py for the full, working implementation.
Security notes
The server has full admin control of your router. Bind it to
127.0.0.1(or a trusted LAN only) — never expose port 8905 to the internet.Your password lives only in
.env(gitignored). Nothing is sent anywhere except your own router.This is not affiliated with or endorsed by Keenetic. Use at your own risk.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that connects AI assistants to the ZONT heating system via the official REST API. It enables users to monitor device states, control heating modes, and perform diagnostics using natural language.Last updatedMIT
- AlicenseAqualityDmaintenanceMCP server for managing VyOS routers via the VyOS HTTP API, allowing AI assistants to read config, set interfaces, firewall rules, VPNs, and more.Last updated171MIT
- Alicense-qualityCmaintenanceAn MCP server that enables AI assistants to control Home Assistant via natural language, including device control, automation management, and system configuration.Last updatedMIT
- Alicense-qualityFmaintenanceAn MCP server that gives AI assistants real-time access to your homelab infrastructure. It enables querying node status, managing Docker containers, controlling Proxmox VMs, and inspecting OPNsense firewall state through natural conversation.Last updated2MIT
Related MCP Connectors
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for AI dialogue using various LLM models via AceDataCloud
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
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/karyaboyraz/keenetic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server