We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/EricA1019/CTS_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Bughunter Report Formatters
*
* Formats bug scan results into multiple output formats:
* - JSON: Structured data for programmatic consumption
* - Markdown: Human-readable report
* - CTS Plan: Hop-based task format for Shrimp integration
*/
import { BugScanReport } from './scanner.js';
/**
* Format bug report in specified format
*/
export declare function formatReport(report: BugScanReport, format: 'json' | 'markdown' | 'cts_plan'): string;
//# sourceMappingURL=reporter.d.ts.map