Skip to main content
Glama

ClaudeKeep

by sdairs
chat-list-container.tsx540 B
'use client'; import { Chat } from '@/lib/supabase/queries'; import { ChatList } from './chat-list'; import { useState } from 'react'; interface ChatListContainerProps { chats: Chat[]; } export function ChatListContainer({ chats }: ChatListContainerProps) { const [selectedChatId, setSelectedChatId] = useState<string | null>(null); return ( <div className=""> <ChatList chats={chats} selectedChatId={selectedChatId} onSelectChat={(chat) => setSelectedChatId(chat.id)} /> </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