paloalto-mcp-servers
A collection of Model Context Protocol (MCP) servers for managing Palo Alto Networks firewalls and services
Overview
The paloalto-mcp-servers project is a collection of Model Context Protocol (MCP) servers designed for managing Palo Alto Networks firewalls and services.
To use the paloalto-mcp-servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to configure the servers for your Palo Alto Networks devices.
- Centralized management of Palo Alto Networks firewalls - Support for Model Context Protocol (MCP) - Easy integration with existing network infrastructure
- Managing multiple Palo Alto firewalls from a single interface.
- Automating configuration changes across firewalls.
- Monitoring firewall performance and logs.
Add to your AI client
Use these steps to connect paloalto-mcp-servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"paloalto-mcp-servers-dynamicendpoints": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"paloalto-mcp-servers-dynamicendpoints": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"paloalto-mcp-servers-dynamicendpoints": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"paloalto-mcp-servers-dynamicendpoints": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"paloalto-mcp-servers-dynamicendpoints": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"paloalto-mcp-servers-dynamicendpoints": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-paloalto-mcp-servers-dynamicendpoints"
]
}
}
}FAQ
What is Model Context Protocol (MCP)?
MCP is a protocol that allows for the management and configuration of network devices in a standardized way.
Is there any cost associated with using paloalto-mcp-servers?
The project is open-source and free to use, but you may need a valid license for Palo Alto Networks devices.
Where can I find the documentation?
Documentation is available in the GitHub repository under the 'docs' folder.