We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sdd330/feishu-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
request-id.ts•266 B
/**
* Generate a unique request ID
*
* Creates a unique identifier for logging and tracking purposes.
*
* @returns Unique ID string
*/
export function generateRequestId(): string {
return `req_${Date.now()}_${Math.random().toString(36).substring(2, 10)}`;
}