We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mayla-debug/mcp-google-calendar2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
paths.ts•243 B
import path from "node:path";
/** Directory base dell’app quando gira su Smithery */
export const BASE_DIR = process.cwd();
/** Join relativo alla base */
export function rel(...parts: string[]) {
return path.join(BASE_DIR, ...parts);
}