We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/knishioka/ib-sec-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""CLI for report generation"""
import typer
from rich.console import Console
app = typer.Typer(help="Generate reports")
console = Console()
@app.command()
def generate(
report_format: str = typer.Option(
"console",
"--format",
"-f",
help="Report format (console, html, pdf)",
),
output: str = typer.Option(
"report.html",
"--output",
"-o",
help="Output file path",
),
) -> None:
"""
Generate comprehensive report
Examples:
# Console report
ib-report --format console
# HTML report
ib-report --format html --output report.html
"""
console.print("Report generation not yet implemented", style="yellow")
console.print("Use 'ib-analyze' command with --output option instead", style="cyan")
if __name__ == "__main__":
app()