Skip to main content
Glama

ClaudeKeep

by sdairs
chat-list.tsx738 B
'use client'; import { Chat } from '@/lib/supabase/queries'; import { ChatItem } from './chat-item'; interface ChatListProps { chats: Chat[]; selectedChatId: string | null; onSelectChat: (chat: Chat) => void; } export function ChatList({ chats, selectedChatId, onSelectChat }: ChatListProps) { return ( <div className="space-y-2 p-4"> {chats.map((chat) => ( <div key={chat.id} onClick={() => onSelectChat(chat)} className={`cursor-pointer ${selectedChatId === chat.id ? 'ring-2 ring-primary rounded-xl' : ''}`} > <ChatItem chat={chat} showBadge={true} featured={false} /> </div> ))} </div> ); }

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/sdairs/claudekeep'

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