Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-872Z-6b5d17af.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/cpinfo-analysis-mcp": minor
---

Updated implementation and features, Updated configuration, Added 15 new file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-873Z-286c8ed1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/quantum-gw-connection-analysis-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-873Z-374c8b9d.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/https-inspection-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-873Z-c74d8c40.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/documentation-mcp": patch
---

Updated configuration, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-874Z-c7b40c96.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/quantum-management-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-874Z-eaf960ed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/reputation-service-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-874Z-f29c7023.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/management-logs-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
5 changes: 5 additions & 0 deletions .changeset/2025-11-03T12-16-06-874Z-f6206a56.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chkp/threat-prevention-mcp": minor
---

Updated implementation and features, Modified 1 file(s) (synced from internal repository)
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ This monorepo is organized with each Check Point security domain as a separate M
- **`/gaia`** - GAIA OS MCP server for network management and interface configuration
- **`/documentation-tool`** - Check Point documentation assistant MCP server for product information and technical guidance
- **`/spark-management`** - Spark Management MCP server for Quantum Spark appliance management
- **`/cpinfo-analysis`** - CPInfo Analysis MCP server for Check Point appliance diagnostic file analysis and troubleshooting

## Available MCP Servers

Expand All @@ -52,6 +53,7 @@ The following MCP servers are available in this repository:
| [Gaia](./packages/gaia/) | `@chkp/quantum-gaia-mcp` | Network management and interface configuration for GAIA OS |
| [Documentation Tool](./packages/documentation-tool/) | `@chkp/documentation-mcp` | Comprehensive Check Point documentation assistant providing instant access to product information, technical specifications, configuration guidance, and feature documentation across the entire Check Point security portfolio |
| [Spark Management](./packages/spark-management/) | `@chkp/spark-management-mcp` | Manage and monitor Quantum Spark appliances for MSPs and distributed networks |
| [Cpinfo analysis](./packages/cpinfo-analysis/) | `@chkp/cpinfo-analysis-mcp` | Analyze CPInfo diagnostic files for system health, performance metrics, network configuration, and troubleshooting insights |


## Example: Setting Up an MCP Server
Expand Down
Binary file added docs/assets/demo-videos/cve-investigation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/demo-videos/gw-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/demo-videos/mcp-drop-analysis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/demo-videos/preemtive-actions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions docs/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1033,10 +1033,12 @@ function createVideoCard(video) {

const videoThumbnail = document.createElement('div');
videoThumbnail.className = 'video-thumbnail';

// Get thumbnail filename (replace .mp4 with .png)
const thumbnailFilename = video.filename.replace('.mp4', '.png');

videoThumbnail.innerHTML = `
<video preload="metadata" muted>
<source src="assets/demo-videos/${video.filename}#t=0.1" type="video/mp4">
</video>
<img src="assets/demo-videos/${thumbnailFilename}" alt="${video.title}" class="video-thumbnail-img">
<div class="video-play-overlay">
<div class="video-play-icon">
<i class="fas fa-play"></i>
Expand Down
6 changes: 5 additions & 1 deletion docs/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,9 @@ html {
backdrop-filter: blur(5px);
z-index: 10000;
overflow-y: auto;
align-items: center;
justify-content: center;
padding: var(--spacing-lg);
}

.modal.active {
Expand Down Expand Up @@ -1417,7 +1420,8 @@ html {
justify-content: center;
}

.video-thumbnail video {
.video-thumbnail video,
.video-thumbnail-img {
width: 100%;
height: 100%;
object-fit: cover;
Expand Down
Loading