frappe-mcp-server
Version:
Enhanced Model Context Protocol server for Frappe Framework with comprehensive API instructions and helper tools
18 lines (17 loc) • 466 B
TypeScript
/**
* Validates that the required API credentials are available
* @returns Object indicating if credentials are valid with detailed message
*/
export declare function validateApiCredentials(): {
valid: boolean;
message: string;
};
/**
* Check the health of the Frappe API connection
* @returns Health status information
*/
export declare function checkFrappeApiHealth(): Promise<{
healthy: boolean;
tokenAuth: boolean;
message: string;
}>;