This repository contains a collection of Model Context Protocol (MCP) servers for Check Point security platforms, implemented in TypeScript. Each MCP server is organized as a separate package within this monorepo structure.
Model Context Protocol (MCP) servers expose a structured, machine-readable API for your enterprise data—designed for AI-powered automation, copilots, and decision engines. By delivering a clear, contextual slice of your security environment, MCP lets you query, analyze, and optimize complex systems without building custom SDKs or parsing raw exports.
Security policies often span hundreds of rules and thousands of objects across diverse enforcement points. Understanding, auditing, or optimizing these environments is slow and error-prone.
MCP changes this: exposing security management data in a modular, context-rich format, ready for AI systems to consume. Enabling the AI to use your data with precision. Ask real-world questions, and get structured, actionable answers—instantly.
This monorepo is organized with each Check Point security domain as a separate MCP server:
/packages
- Contains all MCP server implementations and shared libraries/management
- Management API MCP server for policy and object management/infra
- Shared infrastructure components and utilities/management-logs
- Management Logs MCP server for Check Point products
The following MCP servers are available in this repository:
MCP Server | Package Name | Description |
---|---|---|
Management | @chkp/quantum-management-mcp |
Query policies, rules, objects, and network topology |
Management-logs | @chkp/management-logs-mcp |
Make queries and gain insights from connection and audit logs |
Here's an example of how to configure the Management MCP server in your MCP client:
{
"MCP-NAME": {
"command": "npx",
"args": [
"@chkp/MCP_NPM_PACKAGE"
],
"env": {
// Specific server configuration
}
}
}
Each MCP server has its own specific configuration requirements. Please refer to the individual package README files for detailed setup instructions.
To work with this repository:
# Clone the repository
git clone [repository-url]
# Install dependencies
npm install
# Build all packages
npm run build
- Authentication keys and credentials are never shared with the model. They are used only by the MCP server to authenticate with your Check Point management system.
- Only use client implementations you trust. Malicious or untrusted clients could misuse your credentials or access data improperly.
- Queried Data will be exposed to the model. Ensure that you only use models and providers that comply with your organization’s policies for handling sensitive data and PII.