We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/justinpreston/mcp-router'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
utils.ts•312 B
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
/**
* Utility function for merging Tailwind CSS classes.
* Combines clsx for conditional classes and tailwind-merge to handle conflicts.
*/
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}