Downloads F5 AS3 (Application Services 3 Extension) RPM packages from GitHub releases for installation on BIG-IP devices
BIG-IP MCP Server
A Model Context Protocol (MCP) server for managing F5 BIG-IP devices. Built with FastMCP 2.0, this server provides tools to authenticate to BIG-IP load balancers and query virtual server configurations.
Features
Configuration-Based Credentials - Store BIG-IP credentials securely in a JSON config file
Multi-Device Support - Manage multiple BIG-IP devices from a single server
Token Caching - Automatically caches authentication tokens and reuses until expiry
Virtual Server Management - List all virtual servers with status and configuration
AS3 Management - Check, install, and upgrade F5 Application Services 3 Extension
SSL Flexibility - Support for self-signed certificates (common in lab environments)
Async/Await - Non-blocking I/O for responsive performance
Quick Start
Install dependencies (see Installation section below)
Create configuration file:
cp bigip_config.example.json bigip_config.jsonEdit with your BIG-IP device details
Restart Claude Desktop to load the server
Use the tools: Ask Claude to "list BIG-IP devices" or "list virtual servers on [device-name]"
Installation
Step 1: Create a Virtual Environment
Using venv (recommended for standard Python)
Using uv (recommended for modern Python projects)
Step 2: Install Dependencies
With virtual environment activated:
Using uv
Using pip
Step 3: Verification
Confirm FastMCP is installed:
Note: Always activate your virtual environment before running the server or installing packages.
Running the Server
Important: Make sure your virtual environment is activated before running the server.
Method 1: Direct execution (stdio transport)
Method 2: FastMCP CLI
Run with stdio transport (default for MCP):
Run with HTTP transport:
Configuration
Creating Your Configuration File
Copy the example configuration:
cp bigip_config.example.json bigip_config.jsonEdit
bigip_config.jsonwith your BIG-IP devices:{ "devices": { "prod-lb-01": { "ip_address": "10.1.1.10", "username": "admin", "password": "your-password", "verify_ssl": false, "description": "Production load balancer" }, "lab-bigip": { "ip_address": "192.168.1.100", "username": "admin", "password": "admin", "verify_ssl": false, "description": "Lab environment" } } }Security Note:
bigip_config.jsonis automatically excluded from git (.gitignore)
See CONFIGURATION.md for detailed configuration guide.
Available Tools
list_bigip_devices
List all configured BIG-IP devices from the configuration file.
Usage:
Returns: List of device names, IP addresses, and descriptions
list_virtual_servers
List all virtual servers on a specific BIG-IP device.
Parameters:
device_name- Name of the device from config file (e.g., 'prod-lb-01')
Usage:
Returns: Formatted list of virtual servers with status, destination, and configuration details
Features:
Reads credentials from configuration file (no passwords in chat!)
Automatically authenticates and caches token
Token reused for 19 minutes before re-authentication
manage_as3
Check, install, or upgrade F5 AS3 (Application Services 3 Extension) on BIG-IP devices.
Parameters:
device_name- Name of the device from config file (e.g., 'prod-lb-01')action- Action to perform: "check" (default), "install", or "upgrade"auto_install- Set to True to proceed with installation/upgrade (default: False)
Usage:
Returns: AS3 version information and installation/upgrade results
Features:
Automatically fetches latest AS3 version from GitHub
Downloads and uploads RPM to BIG-IP
Polls installation task until completion
Verifies installation after completion
Supports version comparison and upgrade recommendations
Two-step confirmation with
auto_installparameter prevents accidental installations
Requirements:
AS3 installation requires admin account (not just administrator role)
Network access to GitHub for downloading RPM packages
BIG-IP 14.1+ recommended for AS3 3.50+
Resources
config://server- Server configuration and capabilities
Prompts
help_prompt()- Overview of server capabilities and usage
Usage with Claude Desktop
Add this server to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Recommended: Using the wrapper script (avoids permission issues)
The wrapper script automatically handles virtual environment activation and works around macOS permission restrictions.
Alternative options (if you have permission issues):
Note: Update the paths above to match your actual installation directory. If using uv, change venv to .venv in the paths.
After updating the config, restart Claude Desktop to load the server.
Using the BIG-IP Tools
Example Interactions
List Available Devices:
List Virtual Servers:
Or more naturally:
Check Multiple Devices:
Check AS3 Status:
Install AS3:
Upgrade AS3:
Workflow
First time: Create and configure
bigip_config.jsonwith your devicesCheck devices: Ask Claude to list available BIG-IP devices
Query virtual servers: Specify the device name from your config
Credentials: Read automatically from config file (no passwords in chat!)
Subsequent requests: Authentication tokens cached for efficiency
BIG-IP Requirements
Network Access
The machine running this MCP server must have network access to the BIG-IP management interface (typically port 443/HTTPS)
Ensure firewall rules allow outbound HTTPS connections to your BIG-IP device
BIG-IP Configuration
BIG-IP must have iControl REST API enabled (enabled by default)
User account must have appropriate permissions to:
Authenticate via iControl REST
Read virtual server configurations (typically requires at least "Guest" role)
Supported Versions
BIG-IP version 12.0 or higher (for token-based authentication)
Tested with BIG-IP 13.x, 14.x, 15.x, 16.x, 17.x
SSL Certificates
For production BIG-IP devices with valid SSL certificates, set
verify_ssl: trueFor lab/dev environments with self-signed certificates, use
verify_ssl: false(default)
Security Considerations
Credential Handling
Never hardcoded - Credentials are requested interactively via MCP's elicitation feature
Session-scoped caching - Credentials are cached only for the current MCP session
Token-based auth - Password is only sent during initial authentication; subsequent requests use tokens
Automatic expiry - Tokens expire after 19 minutes and are automatically refreshed
Best Practices
Use dedicated service accounts with read-only permissions when possible
Enable SSL verification (
verify_ssl: true) for production environmentsUse the
clear_bigip_credentialstool when switching between BIG-IP devicesEnsure Claude Desktop has appropriate file permissions (see Troubleshooting)
Troubleshooting
Permission Errors with Virtual Environment
If you see errors like PermissionError: [Errno 1] Operation not permitted: '/path/to/venv/pyvenv.cfg':
Use the wrapper script (recommended):
{ "mcpServers": { "bigip": { "command": "/Users/a.ganti/Documents/code/mcp-servers/big-ip/run_server.sh" } } }Grant Claude Desktop Full Disk Access:
Open System Settings → Privacy & Security → Full Disk Access
Add Claude and enable access
Restart Claude Desktop
Or recreate the virtual environment:
rm -rf venv python3 -m venv venv source venv/bin/activate pip install -r requirements.txt
BIG-IP Connection Issues
"Failed to connect to BIG-IP"
Verify network connectivity:
ping <bigip-ip>Verify HTTPS access:
curl -k https://<bigip-ip>/mgmt/shared/authn/loginCheck firewall rules allow outbound HTTPS (port 443)
"Authentication failed: 401"
Verify username and password are correct
Check user account is enabled in BIG-IP
Verify user has API access permissions
"SSL verification failed"
For self-signed certificates, set
verify_ssl: falsewhen promptedFor production, ensure BIG-IP has valid SSL certificate
"Failed to retrieve virtual servers: 403"
User account lacks permissions to read LTM configuration
Requires at least "Guest" role or custom role with
ltmread permissions
Server Not Connecting
Check the Claude Desktop logs for errors. The wrapper script provides better error handling and environment isolation.
Development
Adding More Tools
To add additional BIG-IP management capabilities:
Create a new async function using the
@mcp.tooldecoratorUse
ctx: Contextparameter for logging and elicitationReuse cached credentials from context state
Follow the pattern in
list_virtual_serversfor authentication
Example:
Extending Functionality
Additional F5 BIG-IP operations that could be added:
List pool members and their status
Query pool statistics
List iRules
Get SSL certificate information
Query virtual server statistics
List nodes and their availability
Documentation
FastMCP: https://gofastmcp.com
MCP Protocol: https://modelcontextprotocol.io
F5 BIG-IP iControl REST API: https://clouddocs.f5.com/api/icontrol-rest/
F5 LTM Virtual Server API: https://clouddocs.f5.com/api/icontrol-rest/APIRef_tm_ltm_virtual.html
License
This project is provided as-is for managing F5 BIG-IP devices via the MCP protocol.