Skip to main content
Glama
ec49ca

MCP Multi-Agent Orchestration Server

by ec49ca
chat-message.tsx644 B
import { cn } from '@/lib/utils'; export interface ChatMessage { id: string; role: 'user' | 'assistant'; content: string; createdAt: Date; } export function ChatMessage({ message }: { message: ChatMessage }) { const isUser = message.role === 'user'; return ( <div className={cn( 'flex items-start gap-3 py-4', isUser ? 'justify-end' : 'justify-start' )} > <div className={cn( 'rounded-lg px-4 py-3 max-w-[85%] text-sm', isUser ? 'bg-blue-600 text-white' : 'bg-gray-700 text-gray-200' )} > {message.content} </div> </div> ); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ec49ca/NLP-project-contract-comparison'

If you have feedback or need assistance with the MCP directory API, please join our Discord server