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