From aa69aa267ad27a8141f33eeb776a87e65ca9fddf Mon Sep 17 00:00:00 2001 From: Haim Kastner Date: Tue, 14 Apr 2026 09:54:43 +0300 Subject: [PATCH 1/2] Set GA version --- README.md | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 4de8d9e..3b535da 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ [![License](https://img.shields.io/github/license/CheckPointSW/workforce-ai-mcp.svg?style=plastic)](https://github.com/CheckPointSW/workforce-ai-mcp/blob/release/LICENSE) [![npm version](https://img.shields.io/npm/v/@haimkastner/workforce-ai-mcp.svg?style=plastic)](https://www.npmjs.com/package/@haimkastner/workforce-ai-mcp) - -> **Pre-release disclaimer:** This package is currently in release candidate (RC) stage and is intended for testing and evaluation purposes only. APIs and tool definitions may change before the stable release. Do not use in production environments. - An [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that exposes Check Point Workforce AI capabilities as LLM tools — enabling AI assistants to query, analyze, and manage AI & Browse security policies, assets, and applications through natural language. ## Getting started diff --git a/package.json b/package.json index 45428b2..e59ed6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@haimkastner/workforce-ai-mcp", - "version": "1.0.0-rc.7", + "version": "1.0.0", "description": "MCP server for Workforce AI — policy management, asset visibility, and apps catalog via LLM tool calls", "license": "MIT", "keywords": [ From ddfa7a261634017d5cbff28f00b8ccccaffd9012 Mon Sep 17 00:00:00 2001 From: Haim Kastner Date: Tue, 14 Apr 2026 09:57:53 +0300 Subject: [PATCH 2/2] Set pkg name --- README.md | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3b535da..aae5784 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Check Point - Workforce AI MCP Server -[![License](https://img.shields.io/github/license/CheckPointSW/workforce-ai-mcp.svg?style=plastic)](https://github.com/CheckPointSW/workforce-ai-mcp/blob/release/LICENSE) [![npm version](https://img.shields.io/npm/v/@haimkastner/workforce-ai-mcp.svg?style=plastic)](https://www.npmjs.com/package/@haimkastner/workforce-ai-mcp) +[![License](https://img.shields.io/github/license/CheckPointSW/workforce-ai-mcp.svg?style=plastic)](https://github.com/CheckPointSW/workforce-ai-mcp/blob/release/LICENSE) [![npm version](https://img.shields.io/npm/v/@chkp/workforce-ai-mcp.svg?style=plastic)](https://www.npmjs.com/package/@chkp/workforce-ai-mcp) An [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that exposes Check Point Workforce AI capabilities as LLM tools — enabling AI assistants to query, analyze, and manage AI & Browse security policies, assets, and applications through natural language. @@ -42,7 +42,7 @@ CP_CI_CLIENT_ID="your-client-id" \ CP_CI_ACCESS_KEY="your-access-key" \ CP_CI_GATEWAY="https://cloudinfra-gw-us.portal.checkpoint.com" \ MCP_MODE=stdio \ -npx @haimkastner/workforce-ai-mcp +npx @chkp/workforce-ai-mcp ``` #### Claude Desktop configuration @@ -54,7 +54,7 @@ Add to your `claude_desktop_config.json`: "mcpServers": { "workforce-ai": { "command": "npx", - "args": ["--yes", "@haimkastner/workforce-ai-mcp"], + "args": ["--yes", "@chkp/workforce-ai-mcp"], "env": { "CP_CI_CLIENT_ID": "your-client-id", "CP_CI_ACCESS_KEY": "your-access-key", @@ -76,7 +76,7 @@ CP_CI_ACCESS_KEY="your-access-key" \ CP_CI_GATEWAY="https://cloudinfra-gw-us.portal.checkpoint.com" \ MCP_MODE=http \ PORT=3000 \ -npx @haimkastner/workforce-ai-mcp +npx @chkp/workforce-ai-mcp ``` The server exposes: diff --git a/package.json b/package.json index e59ed6e..e524023 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@haimkastner/workforce-ai-mcp", + "name": "@chkp/workforce-ai-mcp", "version": "1.0.0", "description": "MCP server for Workforce AI — policy management, asset visibility, and apps catalog via LLM tool calls", "license": "MIT",