Skip to main content
Glama

Ultimate MCP Coding Platform

StatusDisplay.tsx960 B
type StatusMessage = { id: string; text: string; level: "info" | "error"; timestamp: string; }; type StatusDisplayProps = { messages: StatusMessage[]; }; export function StatusDisplay({ messages }: StatusDisplayProps) { return ( <section className="panel"> <header className="panel__header"> <h2>Status</h2> </header> <div className="panel__body status-display"> {messages.length === 0 && <p>No activity recorded yet.</p>} {messages.map((message) => ( <article key={message.id} className={`status-message status-message--${message.level}`} > <header> <time dateTime={message.timestamp}>{message.timestamp}</time> <span>{message.level.toUpperCase()}</span> </header> <pre>{message.text}</pre> </article> ))} </div> </section> ); } export type { StatusMessage };

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/Senpai-Sama7/Ultimate_MCP'

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