CheckPoint MCP Servers Explorer
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CheckPoint MCP Servers Explorerlist all CheckPoint MCP servers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CheckPoint MCP Servers Explorer
MCP server for exploring and introspecting CheckPoint MCP servers. Provides tools to fetch server information, list available servers, and introspect their tools.
Installation
This project uses uv for Python project management.
# Install dependencies
uv syncRelated MCP server: MCP Registry Server
Usage
Run the server:
# Using the CLI entry point
uv run chkp-mcp-servers-mcp-server
# Or directly with Python
uv run python -m chkp_mcp_serversRun directly with uvx (no installation needed):
uvx --from . chkp-mcp-servers-mcp-serverClaude Desktop Configuration
Option 1: Using MCPB File (Recommended)
Double-click the chkp-mcp-servers-local.mcpb.json file to install directly into Claude Desktop.
Option 2: Manual Configuration
Add to your ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"chkp-mcp-servers": {
"command": "/Users/YOUR_USERNAME/.local/bin/uv",
"args": [
"--directory",
"/path/to/chkp_mcps",
"run",
"chkp-mcp-servers-mcp-server"
]
}
}
}Replace /path/to/chkp_mcps with the absolute path to this project directory.
Note: Use the full path to uv (find it with which uv) because Claude Desktop doesn't inherit your shell's PATH.
Option 3: Install from GitHub (After Publishing)
Use the chkp-mcp-servers.mcpb.json file after publishing to GitHub:
# Update the repository URL in chkp-mcp-servers.mcpb.json first
# Then double-click to installTools
echo: Echoes back the provided message
Arguments:
message(str): The message to echo back
fetch_readme: Fetches the README content from CheckPointSW/mcp-servers repository
Arguments: None
Returns: The content of the README.md file as text
list_chkp_mcp_servers: Lists all CheckPoint MCP servers from the repository
Arguments: None
Returns: A structured list of MCP servers with:
server_name: Name of the serverpackage_name: NPM package namedescription: Server description
get_chkp_mcp_server_tools: Gets all tools from a CheckPoint MCP server
Arguments:
package_name(str): The NPM package name (e.g., "@chkp/quantum-gw-cli-mcp")
Returns: A list of tools with:
name: Tool namedescription: Tool descriptioninputSchema: JSON schema for the tool's input parameters
get_chkp_mcp_server_prompts: Gets all prompts from a CheckPoint MCP server
Arguments:
package_name(str): The NPM package name (e.g., "@chkp/quantum-gw-cli-mcp")
Returns: A list of prompts with:
name: Prompt namedescription: Prompt descriptionarguments: List of prompt arguments with name, description, and required flag
get_chkp_mcp_server_documentation: Gets NPM package documentation
Arguments:
package_name(str): The NPM package name (e.g., "@chkp/quantum-management-mcp")
Returns: Package documentation as markdown, including README, configuration details, and environment variables
Available Tools
6 toolsechoA
Echo back the provided message.
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | The message to echo back |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully discloses the tool's behavior: it returns the input message unchanged. There are no side effects, permissions, or additional behavioral traits to disclose for such a trivial operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, grammatically complete sentence that states the entire purpose. Zero wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's trivial complexity, an existing output schema, and a well-defined input schema, the description is fully complete on its own. There are no missing details that would impact an agent's ability to invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents the 'message' parameter with 100% coverage, and the description adds no additional meaning beyond referring to it as 'the provided message.' The schema carries the semantic load.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('echo back') and resource ('the provided message'), clearly distinguishing this from sibling tools focused on README and server management. The one-sentence definition leaves no ambiguity about the tool's function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. However, the purpose is self-evident as a simple utility, so the usage context is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_readmeA
Fetch the README content from CheckPointSW/mcp-servers repository.
Returns: The content of the README.md file as text
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of transparency. It discloses that the return is the README.md content as text, but it does not mention potential errors, required access, or whether the operation is read-only. For a simple fetch, this is acceptable but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—two sentences with no filler. It front-loads the purpose and then states the return value, earning every word.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no params, simple fetch) and the presence of an output schema, the description is mostly complete. It could mention error cases or that it fetches from a fixed path, but those are minor omissions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the baseline is 4. The description correctly omits parameter details since none exist, and the schema already indicates no properties.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Fetch') and clearly identifies the resource ('README content from CheckPointSW/mcp-servers repository'). It is easily distinguishable from siblings like list_chkp_mcp_servers and get_chkp_mcp_server_tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you need the repo's README, but it does not explicitly state when to use this tool versus alternatives or mention any exclusions. The context is clear, but no direct guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chkp_mcp_server_documentationA
Get NPM package documentation for a CheckPoint MCP server.
Fetches the NPM package page and converts it to markdown format, including README, configuration details, environment variables, and usage information.
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | The NPM package name of the MCP server (e.g., "@chkp/quantum-management-mcp") |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It effectively explains the fetch-and-convert process and the specific sections included in the resulting markdown. This is transparent about outcome, though it stops short of mentioning side effects, error cases, or network dependencies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two well-structured sentences with no fluff. The first sentence states the core function, the second details the process and content, making it easily scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has only one parameter, a complete schema, and an output schema (not shown). The description adequately covers the tool's functionality, input domain, and what the result will contain, making it complete for a simple fetch operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with package_name already described including an example. The description adds the domain context of 'CheckPoint MCP server' but does not provide additional parameter syntax or format beyond the schema. Baseline 3 is appropriate as the description adds marginal value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves NPM package documentation for a CheckPoint MCP server and enumerates the content (README, configuration details, environment variables, usage). This distinguishes it from sibling tools like fetch_readme, which likely only retrieve the README.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when full package documentation is needed, but it does not explicitly mention alternatives or provide when-not-to-use guidance. The presence of sibling tools like fetch_readme suggests a potential substitution but no direct comparison is made.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chkp_mcp_server_promptsA
Get all prompts from a CheckPoint MCP server.
Connects to the specified MCP server via stdio and retrieves all available prompts with their metadata including name, description, and arguments.
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | The NPM package name of the MCP server (e.g., "@chkp/quantum-gw-cli-mcp") |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description mentions it 'Connects to the specified MCP server via stdio' and 'retrieves all available prompts,' providing some insight into the operation. However, with no annotations, it doesn't disclose potential side effects like package installation or process behavior, which are relevant for a tool that executes an NPM package.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main action, and uses concise language. No unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with a single parameter and a likely output schema covering return values. The description explains the purpose and connection method, making it sufficiently complete for the agent. It lacks prerequisites or error scenarios, but these are not critical given the simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already has 100% coverage of the single parameter package_name, including an example. The description adds no additional parameter semantics beyond what the schema already provides, so it meets the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it 'Get all prompts from a CheckPoint MCP server' with a specific verb and resource. It distinguishes from sibling tools like get_chkp_mcp_server_tools and get_chkp_mcp_server_documentation by focusing on prompts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this tool is for retrieving prompts from a specified MCP server via stdio. However, it doesn't explicitly mention when to use it over sibling tools, though the name itself is self-explanatory.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_chkp_mcp_server_toolsA
Get all tools from a CheckPoint MCP server.
Connects to the specified MCP server via stdio and retrieves all available tools with their metadata including name, description, and input schema.
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | The NPM package name of the MCP server (e.g., "@chkp/quantum-gw-cli-mcp") |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool connects via stdio and retrieves all available tools with metadata, which is a faithful representation of its read-only behavior. It does not detail error conditions or prerequisites, but the core behavioral traits are transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, with the first sentence stating the core purpose and the second adding execution context. No filler words, and information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one well-described parameter and an output schema, the description sufficiently explains what it returns and how it operates. It doesn't over-specify, and the output schema covers return format, so the description is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter `package_name` is already fully described in the input schema with an example, giving 100% coverage. The description does not add parameter-level detail, so the schema carries the load; baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Get all tools from a CheckPoint MCP server,' which clearly states the verb (get), resource (tools), and scope (from a CheckPoint MCP server). This distinguishes it from sibling tools like get_chkp_mcp_server_prompts and get_chkp_mcp_server_documentation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it (when you need the list of tools exposed by an MCP server) but does not explicitly contrast with sibling tools or state when not to use it. There are no exclusions or alternative tool references, so guidance remains implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_chkp_mcp_serversA
List all CheckPoint MCP servers by parsing the README table.
Fetches the README from CheckPointSW/mcp-servers repository and extracts server information from the markdown table.
Returns: A list of MCP servers with server_name, package_name, and description
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that it fetches a README from a specific repository, parses the markdown table, and returns a list with specified fields. This is transparent about the core process, though it doesn't cover potential error behavior or network dependence.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact: three sentences that state the purpose, method, and return format. Every sentence provides unique information without redundancy or fluff, making it well-structured and easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with an output schema, the description adequately covers what the tool does, where data comes from, and what it returns. It falls short of full completeness by not mentioning error conditions, caching, or source volatility, but given the low complexity, it's nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4 per the rubrics. The description adds value by detailing the return values (server_name, package_name, description), which compensates for having no input semantics to clarify.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List all CheckPoint MCP servers'), the resource ('CheckPoint MCP servers'), and the method ('by parsing the README table'). It distinguishes itself from siblings like 'fetch_readme' (which fetches the raw README) and 'get_chkp_mcp_server_tools' (which targets a specific server's tools).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage ('List all...' suggests using it when you need an inventory of servers), but it provides no explicit when-to-use guidance or alternatives. It doesn't mention when to prefer 'fetch_readme' or other sibling tools, leaving the agent to infer from the verb.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.1.5- First observed
echo - First observed
fetch_readme - First observed
get_chkp_mcp_server_documentation - First observed
get_chkp_mcp_server_prompts - First observed
get_chkp_mcp_server_tools - First observed
list_chkp_mcp_servers
TDQS
Scored across 6 tools
Most tools have distinct purposes: fetch_raw vs parse list, retrieve tools, prompts, or docs. echo is unrelated but clearly separate. Slight overlap between fetch_readme and list_chkp_mcp_servers since both read the README, but their outputs differ.
The main tools follow a consistent pattern with prefixes like list_chkp_mcp_servers and get_chkp_mcp_server_*. However, 'echo' and 'fetch_readme' deviate from the dominant naming convention, creating minor inconsistency.
With 6 tools, the set is well-scoped for an explorer server focused on discovering and inspecting CheckPoint MCP servers. Each tool adds distinct value without redundancy.
The server covers the exploration lifecycle well: listing servers, fetching tools/prompts/documentation, and raw README access. Minor gaps include lack of direct config retrieval or server metadata details, but these are workarounds via documentation.
Maintenance
Related MCP Connectors
Independent trust scores, tool surfaces and change history for MCP servers.
Trust, freshness, policy, and discovery layer for public MCP servers.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Related MCP Servers
- AlicenseAqualityNot gradedmaintenanceEnables AI assistants to discover, retrieve details about, and manage MCP (Model Context Protocol) servers that provide additional tools and capabilities on demand.563 npm10-
- AlicenseNot gradedqualityDmaintenanceEnables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.37 npm3MIT
- AlicenseCqualityCmaintenanceMCP server for the Enoch FastAPI control-plane API, enabling inspection and operation of an Enoch instance via tools.4114 PyPIMIT
- FlicenseNot gradedqualityDmaintenanceOfficial MCP server for the CyberEdu CTF platform that automatically discovers and exposes all CyberEduClient methods as tools, enabling seamless interaction with the platform through MCP-compatible clients.8-