We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scmcphub/liana-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•292 B
"""
Command-line interface for liana-mcp.
This module provides a CLI entry point for the liana-mcp package.
"""
from scmcp_shared.cli import MCPCLI
from .server import LianaMCPManager
cli = MCPCLI(
name="liana-mcp",
help_text="Liana MCP Server CLI",
manager=LianaMCPManager
)