Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables natural language queries to Firewalla Gold for read-only network security monitoring, including alarms, devices, traffic flows, and system status via local API.

README.md

Firewalla MCP Server

A read-only Model Context Protocol (MCP) server that connects to your Firewalla Gold via its local API — no MSP subscription required.

Built for AI-powered network security monitoring. Connect it to Claude Code, Claude Desktop, or any MCP-compatible client and query your firewall's alarms, devices, traffic flows, and network stats using natural language.

Features

  • Read-only by design — cannot modify rules, dismiss alarms, or change any settings
  • 100% local — talks directly to your Firewalla box on your LAN (port 8833), no cloud dependency
  • Free — uses the local API, no MSP subscription needed
  • MCP standard — works with any MCP client (Claude Code, Claude Desktop, etc.)

Tools

Devices & Traffic

| Tool | Description | |------|-------------| | get_devices | List all network devices (name, IP, MAC, manufacturer, last active) | | get_top_talkers | Devices ranked by bandwidth usage (download, upload, total bytes) | | get_clients_by_network | Devices grouped by network segment/VLAN | | get_offline_devices | Devices that recently went offline (configurable lookback window) | | get_device_flows | Recent network flows for a specific device (by MAC address) | | search_flows | Search individual flow records with filters (domain, IP, port, category, time range) | | get_dns_queries | DNS query logs — every domain a device resolved (more complete than flow data) |

Security & Rules

| Tool | Description | |------|-------------| | get_alarms | Security alarms with filtering by severity, type, and device | | get_audit_logs | Blocked/allowed traffic decisions — see what your firewall rules caught | | get_rules | Firewall rules/policies with filtering by action/target, summary counts, disabled rule toggle | | get_target_lists | Block/allow target lists (custom domain lists, IP lists, and associated rules) | | get_features | Enabled/disabled features, global + per-network policy overrides, DoH status, vulnerability scan results |

Network & System

| Tool | Description | |------|-------------| | get_network_status | Ping/health check — is the Firewalla box alive? | | get_network_stats | Monthly bandwidth, speed test results, network monitor data | | get_network_performance | WAN latency, packet loss, DNS response times, connection quality | | get_wan_usage | Per-WAN bandwidth breakdown (download/upload per interface) | | get_vlans | Network segments, VLANs, WAN config, and network groups (sensitive data redacted) | | get_system_info | Firmware version, model, uptime, public IP, CPU/memory usage | | get_vpn_status | VPN connections — WireGuard, OpenVPN, mesh profiles and connected clients |

Prerequisites

  • Firewalla Gold (other models may work but are untested)
  • Node.js 18+
  • Your Mac/PC must be on the same network as the Firewalla
  • An ETP keypair (generated during one-time pairing — see below)

Installation

git clone https://github.com/scott-pallas/firewalla-mcp.git
cd firewalla-mcp
npm install
npm run build

Pairing (One-Time Setup)

Before the MCP server can talk to your Firewalla, you need to generate an authentication keypair (ETP token). This is the same pairing mechanism the Firewalla mobile app uses — think of it as registering a new "device" with your Firewalla box.

This step uses a separate utility called firewalla-tools. It is not a dependency of this project — you only need it once to generate your .pem key files. After pairing is complete, you can delete it.

1. Clone firewalla-tools (temporary)

git clone https://github.com/lesleyxyz/firewalla-tools.git
cd firewalla-tools
npm install

2. Enable Additional Pairing

In the Firewalla app on your phone:

  1. Tap your Firewalla box
  2. Go to SettingsAdvancedAllow Additional Pairing
  3. Toggle it ON — a QR code will appear on screen

3. Get the QR Code JSON

The pairing tool needs the JSON data encoded in the QR code. To get it:

  1. Screenshot the QR code shown in the Firewalla app
  2. Scan the screenshot with a QR code reader app (or use your phone's built-in camera)
  3. The QR code decodes to a JSON string that looks like:
   {"gid":"...","seed":"...","license":"...","ek":"...","ipaddress":"..."}
  1. Copy that JSON string — you'll paste it in the next step

4. Generate the Keypair

From the firewalla-tools directory:

cd create-etp-token
node index.js

The tool will prompt you for:

  1. Email — just a label (e.g., you@example.com), used for display in the Firewalla app
  2. QR code JSON — paste the JSON string from step 3
  3. Firewalla IP — your box's IP address (e.g., 10.0.1.1 — this is usually your default gateway)
  4. Create new keypair? — choose Yes

This generates etp.public.pem and etp.private.pem in the current directory.

Tip: To find your Firewalla's IP, run netstat -rn | grep default — the gateway IP is your Firewalla.

5. Store the Keys

Move the .pem files somewhere secure:

mkdir -p ~/.firewalla
mv etp.public.pem etp.private.pem ~/.firewalla/
chmod 600 ~/.firewalla/*.pem

Keep these files safe — they are your authentication credentials.

6. Clean Up

You no longer need firewalla-tools — feel free to delete it:

cd ../..
rm -rf firewalla-tools

Usage

With Claude Code

Add the server to your global config (~/.claude.json) under mcpServers:

{
  "mcpServers": {
    "firewalla": {
      "type": "stdio",
      "command": "node",
      "args": ["/path/to/firewalla-mcp/dist/index.js"],
      "env": {
        "FIREWALLA_IP": "10.0.1.1",
        "FIREWALLA_PUBLIC_KEY_PATH": "/Users/yourname/.firewalla/etp.public.pem",
        "FIREWALLA_PRIVATE_KEY_PATH": "/Users/yourname/.firewalla/etp.private.pem"
      }
    }
  }
}

Then restart Claude Code. The Firewalla tools will be available in all sessions.

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "firewalla": {
      "command": "node",
      "args": ["/path/to/firewalla-mcp/dist/index.js"],
      "env": {
        "FIREWALLA_IP": "10.0.1.1",
        "FIREWALLA_PUBLIC_KEY_PATH": "/Users/yourname/.firewalla/etp.public.pem",
        "FIREWALLA_PRIVATE_KEY_PATH": "/Users/yourname/.firewalla/etp.private.pem"
      }
    }
  }
}

With MCP Inspector (debugging)

FIREWALLA_IP=10.0.1.1 \
FIREWALLA_PUBLIC_KEY_PATH=~/.firewalla/etp.public.pem \
FIREWALLA_PRIVATE_KEY_PATH=~/.firewalla/etp.private.pem \
npx @modelcontextprotocol/inspector node dist/index.js

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FIREWALLA_PUBLIC_KEY_PATH | Yes | — | Path to etp.public.pem | | FIREWALLA_PRIVATE_KEY_PATH | Yes | — | Path to etp.private.pem | | FIREWALLA_IP | No | 10.0.1.1 | Your Firewalla's IP address |

Example Queries

Once connected to an MCP client, try:

  • "Show me all active security alarms"
  • "List every device on my network"
  • "Who are the top bandwidth consumers?"
  • "Show me devices grouped by VLAN"
  • "Which devices went offline in the last 12 hours?"
  • "Show me network flows for device AA:BB:CC:DD:EE:FF"
  • "Search for all connections to netflix.com in the last 24 hours"
  • "What DNS queries did my smart TV make today?"
  • "What traffic has been blocked by the firewall today?"
  • "Show me all my firewall rules"
  • "What block/allow target lists do I have?"
  • "What Firewalla features are enabled?"
  • "Is my Firewalla box healthy?"
  • "What firmware version is running?"
  • "How's my WAN latency and packet loss?"
  • "Show me per-WAN bandwidth usage"
  • "What's the status of my VPN connections?"
  • "Show me my network segments and VLANs"

Project Structure

firewalla-mcp/
├── src/
│   ├── index.ts              # MCP server entry (stdio transport)
│   ├── firewalla-client.ts   # Firewalla local API wrapper
│   └── tools/
│       ├── alarms.ts         # get_alarms
│       ├── devices.ts        # get_devices, get_top_talkers, get_clients_by_network, get_offline_devices
│       ├── dns.ts            # get_dns_queries
│       ├── flows.ts          # get_device_flows, search_flows, get_audit_logs
│       ├── network.ts        # get_network_status, get_network_stats, get_network_performance, get_wan_usage
│       ├── rules.ts          # get_rules, get_features, get_target_lists
│       ├── system.ts         # get_system_info
│       ├── vlans.ts          # get_vlans
│       └── vpn.ts            # get_vpn_status
├── dist/                     # Compiled JS (after build)
├── package.json
├── tsconfig.json
└── CLAUDE.md                 # AI agent project spec

Security

  • Read-only only — this server cannot modify your Firewalla configuration
  • Local network only — communicates directly with your Firewalla box, no cloud relay
  • Key-based auth — uses the same ETP token mechanism as the Firewalla mobile app
  • Sensitive data redacted — WiFi passwords, WireGuard private keys, tokens, credentials, API keys, passphrases, and pre-shared keys are automatically stripped from output
  • Input limits — all count parameters are clamped to a max of 5000 to prevent excessive data retrieval
  • Keep your .pem files secure — they grant read access to your network data

Credits

License

MIT — see LICENSE

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.