We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Articulated7/enfusion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { randomBytes } from "node:crypto";
/**
* Generate a 16-character uppercase hex GUID matching Enfusion's format.
* Example: "6156F2F771D5D73D"
*/
export function generateGuid(): string {
return randomBytes(8).toString("hex").toUpperCase();
}