Sophos Firewall MCP Server
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., "@Sophos Firewall MCP Serverlist firewall rules"
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.
Sophos Firewall MCP Server (sophos-firewall-mcp)
An asynchronous Model Context Protocol (MCP) server for Sophos Firewall (SFOS), enabling AI assistants (such as Antigravity IDE, Claude Desktop, VS Code, and Cursor) to manage, audit, and troubleshoot Sophos Firewall network security infrastructure.
๐ Key Features
Async XML API Integration: Built on
httpx.AsyncClientfor high-throughput, non-blocking IO with Sophos SFOS XML API endpoints (/webconsole/APIController).7 Comprehensive Tool Domains (28 Tools):
System & Status: System version, serial number, uptime, service operational state, and network interface configurations.
Firewall Rules: Security policies listing, creation, status toggling, and rule deletion.
Host & Network Objects: IP host definitions, network subnets, IP host groups, and FQDN objects.
Services: Custom TCP/UDP service objects, port ranges, and service groups.
NAT Rules: SNAT and DNAT port-forwarding rule inspection.
User Management: Local user account configuration and live user session monitoring.
VPN Management: IPsec site-to-site tunnels and SSL VPN remote access policies.
FastMCP Resources: Read-only system state via URIs (
sophos://system/info,sophos://interfaces,sophos://services/status).Guided Prompts: Contextual security audits (
audit_firewall_rules) and traffic troubleshooting (troubleshoot_connectivity).Semantic Tool Router: FastEmbed text embedding router for intelligent tool selection (
USE_ROUTER=true).Tier A+ Quality Score: 100% parameter descriptions, full
ToolAnnotationssafety metadata, and 100% test coverage.
Related MCP server: FortiGate MCP Server
๐ Tool Definition Quality Score (TDQS)
This server is audited against the Tool Definition Quality Score (TDQS) framework to guarantee optimal function calling, type safety, and runtime safety for LLMs.
================ TDQS EVALUATION REPORT ================
Total Registered Tools : 28
Tools with Behavioral Anno : 28 / 28 (100.0%)
Tools with 100% Param Descs : 28 / 28 (100.0%)
Tools with Usage Guidelines : 28 / 28 (100.0%)
Average Quality Score (TDQS) : 5.00 / 5.00
TDQS Quality Tier : Tier A+
========================================================Behavioral Annotations (
ToolAnnotations): 100% of tools specifyreadOnlyHint,destructiveHint, andidempotentHintmetadata.Parameter Descriptions (
Annotated[..., Field(...)]): Every parameter includes explicit typing and human-readable descriptions.Usage Guidelines: Standardized docstrings detailing exact trigger conditions ("Use when...").
โ๏ธ Sophos Firewall API Prerequisites
Before connecting sophos-firewall-mcp to your Sophos Firewall (SFOS) appliance, ensure the XML API is enabled and your client IP is whitelisted:
Log in to Web Admin Console: Open
https://<SOPHOS_HOST>:4444in your browser.Enable API Access:
Navigate to System > Administration > API Access (or API Configuration).
Check the API Configuration toggle/checkbox to enable the API service.
Whitelist Client IP Address:
Under Allowed IP Addresses, click Add and specify the IP address of the machine or container host running
sophos-firewall-mcp.Note: Sophos Firewall rejects API requests from any IP address not explicitly added to this whitelist.
Administrator Account:
Ensure the configured user account (
SOPHOS_USERNAME) has active administrator privileges.
๐ง Environment Variables
Variable | Description | Default |
| Sophos Firewall IP address or FQDN |
|
| Web Console API port |
|
| API Administrator Username |
|
| API Administrator Password | (Required) |
| Sophos XML API Version (e.g., |
|
| Verify SSL/TLS certificates (set |
|
| API request timeout in seconds |
|
| Set |
|
๐ Client Integration
Add the configuration snippet matching your environment to your MCP settings file (e.g. .vscode/mcp.json or mcp_config.json in Antigravity IDE, Claude Desktop, or VS Code).
Option 1: Docker / Podman Drop-in Container Deployment
Podman is fully supported as a rootless drop-in replacement for Docker on Fedora/RHEL/Linux:
{
"mcpServers": {
"sophos-firewall": {
"command": "podman",
"args": [
"run",
"-i",
"--rm",
"-e", "SOPHOS_HOST",
"-e", "SOPHOS_PORT",
"-e", "SOPHOS_USERNAME",
"-e", "SOPHOS_PASSWORD",
"-e", "SOPHOS_API_VERSION",
"-e", "SOPHOS_VERIFY_SSL",
"-e", "USE_ROUTER",
"ghcr.io/jelmervdm/sophos-firewall-mcp:latest"
],
"env": {
"SOPHOS_HOST": "172.16.16.16",
"SOPHOS_PORT": "4444",
"SOPHOS_USERNAME": "admin",
"SOPHOS_PASSWORD": "your_secure_password_here",
"SOPHOS_API_VERSION": "2200.1",
"SOPHOS_VERIFY_SSL": "false",
"USE_ROUTER": "false"
}
}
}
}Tip for Docker vs Podman: Replace
"command": "podman"with"command": "docker"if using standard Docker. Ensure-iis retained and never use-t(TTY mode), as TTY mode injects carriage returns (\r\n) that disrupt stdio JSON-RPC protocol parsing.
Option 2: Local Python Execution (without PyPI)
Via uv (Local Workspace Directory):
{
"mcpServers": {
"sophos-firewall": {
"command": "uv",
"args": [
"--directory",
"/path/to/sophos-firewall-mcp",
"run",
"sophos-firewall-mcp-server"
],
"env": {
"SOPHOS_HOST": "172.16.16.16",
"SOPHOS_PORT": "4444",
"SOPHOS_USERNAME": "admin",
"SOPHOS_PASSWORD": "your_secure_password_here",
"SOPHOS_VERIFY_SSL": "false"
}
}
}
}Via python (Editable Install pip install -e .):
{
"mcpServers": {
"sophos-firewall": {
"command": "python",
"args": ["-m", "sophos_firewall_mcp.server"],
"env": {
"SOPHOS_HOST": "172.16.16.16",
"SOPHOS_PORT": "4444",
"SOPHOS_USERNAME": "admin",
"SOPHOS_PASSWORD": "your_secure_password_here",
"SOPHOS_VERIFY_SSL": "false"
}
}
}
}Via uvx directly from GitHub Repository:
{
"mcpServers": {
"sophos-firewall": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jelmervdm/sophos-firewall-mcp.git",
"sophos-firewall-mcp-server"
],
"env": {
"SOPHOS_HOST": "172.16.16.16",
"SOPHOS_PORT": "4444",
"SOPHOS_USERNAME": "admin",
"SOPHOS_PASSWORD": "your_secure_password_here",
"SOPHOS_VERIFY_SSL": "false"
}
}
}
}๐ง Semantic Tool Routing
When connecting sophos-firewall-mcp to AI models with constrained context windows, set USE_ROUTER=true (or TOOL_ROUTING=true).
When enabled:
The server exposes only 2 meta-tools:
route_toolsandcall_routed_tool.route_toolsuses local CPU embeddings (fastembedwithBAAI/bge-small-en-v1.5) to search for matching firewall tools in 5-10ms.call_routed_tooldynamically invokes the matching tool with parameters.
Note on Router Dependencies: Semantic routing requires optional dependencies (
fastembedandnumpy).
Container (Docker/Podman): Included automatically in official images (
ghcr.io/jelmervdm/sophos-firewall-mcp:latest).Local Python (
pip): Install with extras:pip install -e ".[router]"orpip install "sophos-firewall-mcp-server[router]".
uvWorkspace: Runuv sync --extra router.
uvxdirectly from Git: Pass--with "fastembed>=0.4.0" --with "numpy>=1.26.0". IfUSE_ROUTER=trueis set without installingfastembed, the server will log a warning and gracefully fall back to standard tool mode instead of failing initialization.
๐งช Testing & Quality Assurance
Run the comprehensive test suite, linting, mypy type checks, and TDQS audit:
# Evaluate Tool Definition Quality Score (TDQS)
uv run python scripts/check_tdqs.py
# Run pytest unit test suite (39 tests)
uv run pytest -v
# Code style and syntax linting
uv run flake8 src tests scripts
# Static type verification
uv run mypy src๐ License
Distributed under the Apache 2.0 License. See LICENSE for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/jelmervdm/sophos-firewall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server