We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thomas92fr/mcp-ts-toolskit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
file.ts•226 B
import fs from 'fs';
// Fonction helper pour vérifier si un fichier existe
export function fileExists(filePath: string): boolean {
try {
return fs.existsSync(filePath);
} catch {
return false;
}
}