Skip to content

Commit 3a6d55c

Browse files
committed
mark MCP as EXPERIMENT
1 parent e23734f commit 3a6d55c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This guide walks you through both installation and usage.
1616
2. [On Windows](#on-windows)
1717
2. [Install Pre-Commit Hook](#install-pre-commit-hook)
1818
3. [Cycode CLI Commands](#cycode-cli-commands)
19-
4. [MCP Command](#mcp-command)
19+
4. [MCP Command](#mcp-command-experiment)
2020
1. [Starting the MCP Server](#starting-the-mcp-server)
2121
2. [Available Options](#available-options)
2222
3. [MCP Tools](#mcp-tools)
@@ -286,12 +286,12 @@ The following are the options and commands available with the Cycode CLI applica
286286
| [auth](#using-the-auth-command) | Authenticate your machine to associate the CLI with your Cycode account. |
287287
| [configure](#using-the-configure-command) | Initial command to configure your CLI client authentication. |
288288
| [ignore](#ignoring-scan-results) | Ignores a specific value, path or rule ID. |
289-
| [mcp](#mcp-command) | Start the Model Context Protocol (MCP) server to enable AI integration with Cycode scanning capabilities. |
289+
| [mcp](#mcp-command-experiment) | Start the Model Context Protocol (MCP) server to enable AI integration with Cycode scanning capabilities. |
290290
| [scan](#running-a-scan) | Scan the content for Secrets/IaC/SCA/SAST violations. You`ll need to specify which scan type to perform: commit-history/path/repository/etc. |
291291
| [report](#report-command) | Generate report. You`ll need to specify which report type to perform as SBOM. |
292292
| status | Show the CLI status and exit. |
293293

294-
# MCP Command
294+
# MCP Command \[EXPERIMENT\]
295295

296296
> [!WARNING]
297297
> The MCP command is available only for Python 3.10 and above. If you're using an earlier Python version, this command will not be available.

cycode/cli/apps/mcp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
app = typer.Typer()
66

7-
_mcp_command_docs = 'https://github.com/cycodehq/cycode-cli/blob/main/README.md#mcp-command'
7+
_mcp_command_docs = 'https://github.com/cycodehq/cycode-cli/blob/main/README.md#mcp-command-experiment'
88
_mcp_command_epilog = f'[bold]Documentation:[/] [link={_mcp_command_docs}]{_mcp_command_docs}[/link]'
99

1010
app.command(
1111
name='mcp',
12-
short_help='Start the Cycode MCP (Model Context Protocol) server.',
12+
short_help='[EXPERIMENT] Start the Cycode MCP (Model Context Protocol) server.',
1313
epilog=_mcp_command_epilog,
1414
)(mcp_command)

0 commit comments

Comments
 (0)