Threat Prevention MCP server for Check Point products
npm install @chkp/threat-prevention-mcpModel 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.
- Threat Protection Management: Query and analyze threat protections, profiles, and indicators
- IPS (Intrusion Prevention System) Monitoring: Check IPS status, update schedules, and protection attributes
- IOC Feed Management: View and analyze threat intelligence feeds and indicators of compromise

> 📊 Anonymous Usage Statistics: Check Point collects anonymous usage statistics to help improve this MCP server. To opt out, set TELEMETRY_DISABLED=true or use --no-telemetry flag.
This server supports two main modes of authentication:
Authenticate to Check Point Smart-1 Cloud using an API key.
- How to generate an API key:
In your Smart-1 Cloud dashboard, go to Settings → API & SmartConsole and generate an API key.
Copy the key and the server login URL (excluding the /login suffix) to your client settings.
!alt text
Set the following environment variables:
- API_KEY: Your Smart-1 Cloud API key
- S1C_URL: Your Smart-1 Cloud tenant "Web-API" URL
---
- Configure your management server to allow API access:
To use this server with an on-premises Check Point management server, you must first enable API access.
Follow the official instructions for Managing Security through API.
- Authenticate to the Security Management Server using either an API key or username/password:
- Follow the official instructions: Managing Administrator Accounts (Check Point R81+)
- When creating the administrator, assign appropriate permissions for API access and management operations.
- You can authenticate using an API key (recommended for automation) or username/password credentials.
Set the following environment variables:
- MANAGEMENT_HOST: IP address or hostname of your management server
- PORT: (Optional) Management server port (default: 443)
- API_KEY: Your management API key (if using API key authentication)
- USERNAME: Username for authentication (if using username/password authentication)
- PASSWORD: Password for authentication (if using username/password authentication)
---
Download and install the latest version of Node.js if you don't already have it installed.
You can check your installed version by running:
``bash`
node -v # Should print "v20" or higher
nvm current # Should print "v20" or higher
This server has been tested with Claude Desktop, Cursor, GitHub Copilot, and Windsurf clients.
It is expected to work with any MCP client that supports the Model Context Protocol.
> Note: Due to the nature of management API calls and the variety of server tools, using this server may require a paid subscription to the model provider to support token limits and context window sizes.
> For smaller models, you can reduce token usage by limiting the number of enabled tools in the client.
`json`
{
"mcpServers": {
"threat-prevention": {
"command": "npx",
"args": ["@chkp/threat-prevention-mcp"],
"env": {
"API_KEY": "YOUR_API_KEY",
"S1C_URL": "YOUR_S1C_URL" // e.g., https://xxxxxxxx.maas.checkpoint.com/yyyyyyy/web_api
}
}
}
}
`json`
{
"mcpServers": {
"threat-prevention": {
"command": "npx",
"args": ["@chkp/threat-prevention-mcp"],
"env": {
"MANAGEMENT_HOST": "YOUR_MANAGEMENT_IP_OR_HOST_NAME",
"MANAGEMENT_PORT": "443", // optional, default is 443
"API_KEY": "YOUR_API_KEY", // or use USERNAME and PASSWORD
"USERNAME": "YOUR_USERNAME", // optional
"PASSWORD": "YOUR_PASSWORD" // optional
}
}
}
}
> Set only the environment variables required for your authentication method.
#### Using a Bundled MCPB (formerly DXT)
1. Download the MCPB file: 📥 threat-prevention.mcpb
2. Open Claude Desktop App → Settings → Extensions
3. Drag the MCPB file and configure per the instructions.
#### Or Configure Manually
#### For macOS:
`bashCreate the config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
#### For Windows:
`cmd
code %APPDATA%\Claude\claude_desktop_config.json
`Add the server configuration:
`json
{
"mcpServers": {
"threat-prevention": {
"command": "npx",
"args": ["@chkp/threat-prevention-mcp"],
"env": {
// Add the configuration from the above instructions
}
}
}
}
`$3
Enter VSCode settings and type "mcp" in the search bar.
You should see the option to edit the configuration file.
Add this configuration:
`json
{
...
"mcp": {
"inputs": [],
"servers": {
"threat-prevention": {
"command": "npx",
"args": [
"@chkp/threat-prevention-mcp"
],
"env": {
"MANAGEMENT_HOST": "YOUR_MANAGEMENT_IP_OR_HOST_NAME",
"MANAGEMENT_PORT": "443", // optional, default is 443
"API_KEY": "YOUR_API_KEY", // or use USERNAME and PASSWORD
"USERNAME": "YOUR_USERNAME", // optional
"PASSWORD": "YOUR_PASSWORD" // optional
}
}
}
},
...
}
`$3
Enter Windsurf settings and type "mcp" in the search bar.
You should see the option to edit the configuration file.
Add the configuration as Claude Desktop App.
$3
Enter Cursor settings and click on "MCP Servers" in the left menu.
You should see the option to add a new MCP Server.
Add the configuration as Claude Desktop App.
---
Development
$3
- Node.js 20+
- npm 10+
$3
`bash
Install all dependencies
npm install
`$3
`bash
Build all packages
npm run build
`$3
You can run the server locally for development using MCP Inspector or any compatible MCP client.
`bash
node FULL_PATH_TO_SERVER/packages/threat-prevention/dist/index.js --s1c-url|--management-host --api-key|--username|--password
`---
⚠️ Security Notice
1. 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.
2. Only use client implementations you trust. Malicious or untrusted clients could misuse your credentials or access data improperly.
3. Management data is 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.
📊 Telemetry and Privacy
Anonymous Usage Statistics: Check Point collects anonymous usage statistics to improve this MCP server. Only tool usage patterns and anonymous identifiers are collected—no credentials, policies, or sensitive data.
Opt-Out: Set
TELEMETRY_DISABLED=true environment variable or use the --no-telemetry` flag to disable telemetry collection.