We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/UBTCodeNinja/mcp-file-compaction'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { ParseOutcome } from './types.js';
export { ParseOutcome, ParseResult, ParseError } from './types.js';
export type { FileSummary } from './types.js';
/**
* Check if a file extension is supported for summarization
*/
export declare function isSupported(filePath: string): boolean;
/**
* Get a list of supported file extensions
*/
export declare function getSupportedExtensions(): string[];
/**
* Parse a file and generate a summary
* Returns null if the file type is not supported
*/
export declare function parseFile(filePath: string, content: string): ParseOutcome | null;
//# sourceMappingURL=index.d.ts.map