Skip to main content
Glama
goperigon

Perigon MCP Server

Official
by goperigon
loading-state.tsx712 B
import { UserAvatar } from "./user-avatar"; import { User } from "@/lib/perigon-auth-service"; import { cn } from "@/lib/utils"; interface LoadingStateProps { user?: User | null; message: string; className?: string; showAvatar?: boolean; } export function LoadingState({ user, message, className, showAvatar = true }: LoadingStateProps) { return ( <div className={cn("flex items-center space-x-2", className)}> {showAvatar && ( <div className="animate-pulse"> <UserAvatar user={user || null} showFallback={true} /> </div> )} <span className="text-xs text-muted-foreground hidden sm:inline"> {message} </span> </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/goperigon/perigon-mcp-server'

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