firewalla-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FIREWALLA_TOKEN | Yes | Your Firewalla MSP API personal access token | |
| FIREWALLA_MSP_DOMAIN | Yes | Your MSP domain, e.g. your-alias.firewalla.net |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_boxesA | List all Firewalla boxes on this MSP account, optionally filtered by group ID. |
| get_boxB | Get a single Firewalla box by its gid. |
| list_devicesB | List devices seen on the network, optionally filtered by box gid or group ID. |
| list_alarmsC | List alarms. |
| get_alarmB | Get a single alarm by box gid and alarm id. |
| delete_alarmB | Delete an alarm by box gid and alarm id. |
| list_rulesA | List firewall rules. |
| create_ruleB | Create a new firewall rule. |
| pause_ruleB | Pause an existing firewall rule by id. |
| resume_ruleB | Resume a paused firewall rule by id. |
| delete_ruleB | Delete a firewall rule by id. |
| list_flowsC | List network flows. |
| list_target_listsA | List target lists, optionally filtered by owner (a box gid; omit for global/Firewalla-managed lists). |
| get_target_listC | Get a single target list by id. |
| create_target_listC | Create a new target list of IPs/domains. |
| update_target_listB | Update mutable fields of an existing target list. Only non-null fields are sent. |
| delete_target_listC | Delete a target list by id. |
| get_flow_trendsB | Get daily blocked-flow counts, optionally scoped to a box group. |
| get_alarm_trendsC | Get daily alarm counts, optionally scoped to a box group. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Each tool targets a distinct resource or action. Tools for boxes, alarms, rules, target lists, flows, and devices are clearly separated with no overlapping purposes.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., create_rule, list_alarms, delete_target_list). No mixing of styles or vague verbs.
19 tools is on the higher end but still reasonable for comprehensive firewall management covering multiple resource types (boxes, alarms, rules, target lists, flows, devices). Each tool serves a distinct purpose.
CRUD coverage is mostly present for target lists (create, read, update, delete) and alarms (read, delete), but rules lack an update operation despite having pause/resume. Devices and flows are read-only, which is acceptable but leaves gaps for rule editing.