We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/ibmi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { IconType } from '@/components/ui/icon'
const PROVIDER_ICON_MAP: Record<string, IconType> = {
aws: 'aws',
openai: 'open-ai',
anthropic: 'anthropic',
mistral: 'mistral',
gemini: 'gemini',
azure: 'azure',
groq: 'groq',
fireworks: 'fireworks',
deepseek: 'deepseek',
cohere: 'cohere',
ollama: 'ollama',
xai: 'xai'
}
export const getProviderIcon = (provider: string): IconType | null => {
const normalizedProvider = provider.toLowerCase()
return (
Object.entries(PROVIDER_ICON_MAP).find(([key]) =>
normalizedProvider.includes(key)
)?.[1] ?? null
)
}