We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cycodehq/cycode-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•320 B
import typer
from cycode.cli.apps.report import sbom
from cycode.cli.apps.report.report_command import report_command
app = typer.Typer(name='report', no_args_is_help=True)
app.callback(short_help='Generate report. You`ll need to specify which report type to perform as SBOM.')(report_command)
app.add_typer(sbom.app)