WAC510 MCP
Provides tools for managing a NETGEAR WAC510 access point through its local HTTPS interface, including device info, client lists, radio status, traffic statistics, configuration changes, file transfers, reboot, and factory reset.
Click on "Deploy 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., "@WAC510 MCPlist currently connected clients and their signal strength"
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.
WAC510 MCP
A local FastMCP server for one NETGEAR WAC510 access point. It talks directly to the stock firmware's local HTTPS interface and keeps one asynchronous connection pool open for efficient calls.
The WAC510 protocol is undocumented. This implementation was validated against production firmware V9.9.6.8.
The server targets one AP per process. It does not use NETGEAR Insight, SSH, or SNMP.
Requirements
Python 3.14.7
A WAC510 reachable through its local management URL
Expected startup failures are rendered as concise Rich panels with corrective guidance. Unexpected programming errors retain their tracebacks.
Install the locked environment:
uv syncAfter the first PyPI release, run the server without cloning the repository:
uvx wac510-mcpRelated MCP server: openwrt-mcp
Run
Start the local OAuth-protected HTTP server:
uv run wac510-mcpConnect your MCP client to:
http://127.0.0.1:8000/mcpThe MCP client's OAuth flow opens a page titled WAC510 MCP. Enter the access point URL, username, password, and optional connection settings. The server verifies that the device is a WAC510 before authorization completes.
Example URL-based MCP configuration:
{
"mcpServers": {
"wac510": {
"url": "http://127.0.0.1:8000/mcp"
}
}
}The server always hides FastMCP's startup banner. No environment variable or launch flag is required.
Add to Codex
First, keep the server running in a terminal:
uvx wac510-mcp@latestIn another terminal, add its Streamable HTTP endpoint and start OAuth:
codex mcp add wac510 --url http://127.0.0.1:8000/mcp
codex mcp login wac510 --oauth-client-registration dcrYour browser opens the WAC510 MCP setup page. Enter the AP connection settings and authorize the client. Confirm the connection with:
codex mcp listYou can also enter /mcp inside Codex to inspect the server and its tools. Codex CLI, the IDE extension, and the desktop app share the same MCP configuration. See the official OpenAI MCP documentation.
Add to Claude Code
Keep uvx wac510-mcp@latest running, then add the server at user scope so it is available in every project:
claude mcp add \
--transport http \
--scope user \
wac510 \
http://127.0.0.1:8000/mcpOpen Claude Code and enter:
/mcpSelect wac510, authenticate, and complete the setup page in your browser. Verify the saved configuration with:
claude mcp get wac510See the official Claude Code MCP documentation.
The OAuth transport is HTTP, not stdio. Both clients connect to the running URL; they do not launch uvx through a command entry. The server listens only on this machine by default.
Stored settings
Settings are saved under the platform's user configuration directory. On Linux, the default location is:
~/.config/wac510-mcp/settings.enc contains the encrypted AP configuration, oauth.enc contains OAuth client registrations and tokens, and settings.key contains their local encryption key. All files use owner-only permissions, and the password is never rendered back into the setup page. OAuth access and refresh tokens survive server restarts while retaining expiration, client binding, rotation, and revocation behavior.
TLS verification defaults to off because the AP normally uses a self-signed certificate. The setup page can enable verification or specify a private CA bundle.
Safety
Read tools run immediately. Configuration writes require confirm=true. Disruptive operations require the exact tokens returned in their tool descriptions:
REBOOTRESTORE_CONFIGURATIONUPGRADE_FIRMWAREFACTORY_RESET
The raw tools make the server maximally capable. They expose the AP's private JSON protocol, so inspect a read payload before applying it.
For example, read an arbitrary firmware field with raw_query:
{
"payload": {
"system": {
"basicSettings": {
"apName": ""
}
}
}
}Pass the returned hierarchy with changed leaf values to apply_configuration first without confirmation. Review its redacted preview, then repeat the call with confirm=true.
Tools
list_capabilitiesandlist_endpointsdescribe the reverse-engineered surface.device_info,list_clients,radio_status, andtraffic_statisticsprovide common reads.query_capabilitiesreads any selection of 18 management domains with bounded concurrency.raw_queryaccepts any/socketCommunicationread selector.apply_configurationapplies arbitrary configuration after a preview and confirmation.raw_requestcalls any discovered JSON endpoint with endpoint-specific confirmation.download_fileandupload_filesupport logs, configuration, packet captures, ACL files, restore, and firmware files.rebootandfactory_resetrequire exact confirmation tokens.
Development
uv run pytest
uv run mypy src testsReleasing
The release workflow publishes a new version to PyPI, creates a matching GitHub Release, attaches the wheel and source archive, and adds provenance attestations. Start a patch release from any clean checkout with:
just releaseChoose another semantic version increment when needed:
just release minor
just release majorThe recipe updates main, runs the local gate, bumps pyproject.toml and uv.lock, pushes main, fast-forwards and pushes release, then switches the checkout back to main. Use just sync-release to synchronize the branches without changing the version.
The live test suite is read-only and opt-in. Its environment variables exist only for automated testing; normal users configure the server through OAuth:
WAC510_LIVE_TEST=1 uv run pytest tests/test_live_readonly.py -qThis server cannot be deployed
Maintenance
Related MCP Connectors
Read devices, users, keys, ACLs and DNS for a tailnet; manage devices, routes and auth keys.
Manage brainCloud apps, cloud code, hooks and servers; API lookups to help generate client code.
XFA's remote MCP server — query device posture, compliance, policies & CVEs. Read-only.
Remote MCP server to read and manage your Atako AI agents, messages, files, and integrations.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables interaction with VMware vCenter 8.0 REST API via a reverse proxy, providing read-only and write tools with dry-run protection and automatic session management.-
- AlicenseNot gradedqualityCmaintenanceProvides full administrative control of OpenWRT routers via SSH, with a preview-confirm safety model for mutating operations.13 npmMIT
- AlicenseNot gradedqualityDmaintenanceEnables managing VyOS appliances through their HTTP API, providing tools for configuration, operational commands, and interactive troubleshooting.MIT
- FlicenseBqualityAmaintenanceEnables AI agents to manage Keenetic routers through the same RCI API used by the router's web interface, working directly over the local network without cloud involvement. It supports reading device statuses and executing configuration changes, with confirm, dry-run, and destructive-action safeguards.23-