We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yryuu/mcp-localfile-all-read'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pdf.d.ts•295 B
/**
* Extract text content from a PDF file
*/
export declare function parsePDF(filePath: string): Promise<string>;
/**
* Get PDF metadata and page count
*/
export declare function getPDFInfo(filePath: string): Promise<{
pages: number;
info: any;
}>;
//# sourceMappingURL=pdf.d.ts.map