We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/samanhappy/mcphub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cn.ts•319 B
import { ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
/**
* Combines multiple class names and deduplicates Tailwind CSS classes
* This is a utility function for conditionally joining class names together
*/
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}