A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with Imperva Cloud WAF. This integration allows you to query, analyze, and manage your Cloud WAF configuration through natural language conversations.
Note: This is a beta version with read-only capabilities. Write operations are not yet supported.
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. Think of it as a universal adapter that lets Claude and other AI assistants interact with your services.
Managing Cloud WAF configurations often requires:
- Navigating through multiple dashboards and interfaces
- Running complex API queries with specific filters
- Understanding relationships between sites, domains, policies, and rules
- Analyzing security configurations across multiple accounts
With this MCP server, you can ask your AI assistant questions like:
- "Show me all the security rules for my production site"
- "Which sites are using the WAF policy named 'strict-security'?"
- "List all domains that have rate limiting rules configured"
- "What's the current configuration of site ID 12345?"
Your AI assistant will use the MCP tools to fetch the information and present it in a clear, conversational format.
The server provides four powerful tools for Cloud WAF management:
| Tool Name | Parameters | Description |
|---|---|---|
| Get Sites |
• account_id: Sub-account identifier• names: Filter by site names• site_ids: Filter by site IDs• sub_account_ids: Filter by sub-account IDs• page_num: Page number• page_size: Items per page
|
Retrieve information about your Cloud WAF sites. Returns site details including name, ID, account ID, type, active status, CNAMEs, site status, and creation time. |
| Get Domains |
• account_id: Sub-account identifier• site_ids: Filter by site IDs• domain_ids: Filter by domain IDs• names: Filter by domain names• page_num: Page number• page_size: Items per page
|
Fetch domain information for your sites. Returns domain details including name, ID, status, creation date, A records (for apex domains), and CNAME records. Note: A Cloud WAF site can have multiple domains. |
| Get Policies |
• account_id: Sub-account identifier• site_ids: Filter by site IDs• policies_ids: Filter by policy IDs• sub_accounts_ids: Filter by sub-account IDs• names: Filter by policy names• policy_types: Filter by policy type ("ACL")• extended: Get full details• page_num: Page number• page_size: Items per page
|
Query security policies across your account. Returns complete policy information including ID, name, description, enabled status, policy type, settings, configurations, asset assignments, and sub-account permissions. |
| Get Rules |
• account_id: Sub-account identifier• site_ids: Filter by site IDs• rules_ids: Filter by rule IDs• sub_accounts_ids: Filter by sub-account IDs• names: Filter by rule names• categories: Filter by category ("Redirect")• page_num: Page number• page_size: Items per page
|
Retrieve custom security rules assigned to your sites. Supports rate rules, security rules, forward rules, redirect rules, and rewrite rules. Returns detailed rule information including rule ID, site ID, name, action, enabled status, filters, and rule-specific settings (rate limiting, redirects, rewrites, etc.). |
This beta is designed for inspection and analysis, operating in read-only mode.
While you can comprehensively query and explore your configurations, creating, modifying, or deleting assets (policies, rules, sites, or domains) is not currently supported through this MCP server.
For write operations, please use the Imperva Cloud WAF Console.
These capabilities may be added in future releases. For now, use the Imperva Cloud WAF Console to perform write operations.
This is a beta release, and your feedback will shape future development.
What we're looking to learn:
- Which queries do you run most frequently?
- What configuration tasks would you want your AI assistant to help with?
- What features would save you the most time?
- What's confusing or unclear?
Please share your feedback by opening an issue on GitHub or contacting your Imperva representative.
Choose your preferred AI assistant to get started:
- Claude Desktop - Download here
- Docker Desktop - Required to run the MCP server
- Imperva Cloud WAF API Credentials
- API ID and API Key with appropriate permissions
- Contact Imperva Support to obtain credentials
-
Locate your Claude Desktop configuration file:
# macOS/Linux ~/Library/Application Support/Claude/claude_desktop_config.json # Windows %APPDATA%\Claude\claude_desktop_config.json
-
If the file doesn't exist, create it:
# macOS/Linux mkdir -p ~/Library/Application\ Support/Claude touch ~/Library/Application\ Support/Claude/claude_desktop_config.json # Windows (PowerShell) New-Item -Path "$env:APPDATA\Claude\claude_desktop_config.json" -ItemType File -Force
-
Add the MCP server configuration, replacing
YOUR_API_IDandYOUR_API_KEYwith your actual Imperva credentials:{ "mcpServers": { "imperva-cloudwaf": { "command": "docker", "args": [ "run", "--rm", "--pull", "always", "-i", "-e", "API_ID=YOUR_API_ID", "-e", "API_KEY=YOUR_API_KEY", "ghcr.io/thalesgroup/imperva-cloud-waf-mcp-server:latest" ] } } }- If you already have other MCP servers configured, add the
imperva-cloudwafblock inside the existingmcpServersobject.
- If you already have other MCP servers configured, add the
-
Restart Claude Desktop.
After restarting Claude Desktop, the application should start without errors. Within a few seconds, the Imperva Cloud WAF tools will appear in the MCP tools section.
- Visual Studio Code - Download here
- GitHub Copilot - Install the GitHub Copilot extension and ensure you have an active subscription
- Docker Desktop - Required to run the MCP server
- Imperva Cloud WAF API Credentials
- API ID and API Key with appropriate permissions
- Contact Imperva Support to obtain credentials
-
Open VS Code and launch the Command Palette:
- macOS:
Command + Shift + P - Windows/Linux:
Ctrl + Shift + P
- macOS:
-
Type
MCPand select MCP: Add Server -
When prompted, select Command (Stdio) as the server type
-
Enter the following command, replacing
YOUR_API_IDandYOUR_API_KEYwith your actual Imperva credentials:docker run --rm --pull always -i -e API_ID=YOUR_API_ID -e API_KEY=YOUR_API_KEY ghcr.io/thalesgroup/imperva-cloud-waf-mcp-server:latest
-
Give the server a name when prompted (e.g.,
Imperva) -
VS Code will open the
mcp.jsonconfiguration file showing all your MCP servers. Find the Imperva entry and wait for its status to change to Running- This may take a few minutes while Docker downloads the image
Once the server status shows Running in the mcp.json file, open GitHub Copilot and test the connection by asking:
How many sites are there under my account in Imperva?
Copilot should use the Imperva MCP server to fetch and display your Cloud WAF sites.
Once configured, you can interact with your Cloud WAF account through natural language:
You: Show me all active sites in my account
Your AI assistant will use the get_sites_tool to fetch and display
your sites with their current status, CNAMEs, and configuration details.
You: What's the DNS configuration for my domain example.com?
Your AI assistant will use the get_domains_tool to find the domain and show you
the A records, CNAME, and current status.
You: List all WAF policies that are assigned to site ID 12345
Your AI assistant will use the get_policies_tool to retrieve policies
filtered by site ID and policy type, showing you their settings and configurations.
You: Show me all rate limiting rules for my production sites
Your AI assistant will use the get_rules_tool with the "Rates" category filter
to display rate limiting rules and their configurations.
You: Compare the security policies between my staging and production sites
Your AI assistant will fetch policies for both sites using the appropriate filters and
provide a comparison of their configurations.
The MCP server supports API Key authentication. Your credentials are passed securely through environment variables and are never stored or logged by the MCP server.
For Claude Desktop:
- Verify Docker Desktop is running
- Check that your
claude_desktop_config.jsonis valid JSON - Ensure API credentials are correctly set
- Restart Claude Desktop completely
- Check Claude Desktop logs for error messages
For VS Code with GitHub Copilot:
- Verify Docker Desktop is running
- Check that the
mcp.jsonfile was created correctly - Ensure API credentials are correctly set in the command
- Wait for the server status to show "Running" (may take a few minutes)
- Restart VS Code if the server doesn't appear
- Verify your API ID and API Key are correct
- Ensure your API credentials have the necessary permissions
- Check that your credentials haven't expired
- Verify you have internet connectivity
- Check if Docker can pull and run images
- Ensure no firewall is blocking Docker or your AI assistant application
If you start receiving errors from the MCP tools, you may be running an outdated version of the MCP server.
Since the Docker configuration uses --pull always, simply restarting your AI assistant application will automatically pull the latest Docker image.
For Claude Desktop: Fully quit the application (ensure the process is completely killed) before restarting to ensure the old container is removed and a fresh one starts with the latest version.
For VS Code: Close and reopen VS Code, or use the Command Palette to reload the MCP server configuration.
For development or testing, you can run the server directly with Python:
-
Clone the repository
-
Install dependencies:
curl -LsSf https://astral.sh/uv/install.sh | sh uv sync -
Create a
.envfile:API_ID=your_api_id API_KEY=your_api_key -
Run the server:
uv run python -m cwaf_external_mcp.server
pytest tests/Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the Apache License - see the LICENSE file for details.
Warning All the requirements listed have their own License.
For issues related to:
- This MCP server: Open an issue on GitHub
- Imperva Cloud WAF API: Contact Imperva Support
- Claude Desktop: Visit Claude Help Center
Built with FastMCP and powered by the Imperva Cloud WAF API.
