We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zoyth/cakemail-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { CakemailAPI } from '../cakemail-api.js';
import { handleCakemailError } from '../utils/errors.js';
export async function handleHealthCheck(_args: any, api: CakemailAPI) {
try {
const health = await api.healthCheck();
return {
content: [
{
type: 'text',
text: `Health Status: ${JSON.stringify(health, null, 2)}`,
},
],
};
} catch (error) {
return handleCakemailError(error);
}
}