We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
basic.tsx•626 B
import React from 'react';
import { KolCard } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const CardBasic: FC = () => (
<>
<SampleDescription>
<p>KolCard shows a card with title and slot content. The second sample features a close button.</p>
</SampleDescription>
<div className="w-full grid grid-cols-2 gap-4">
<KolCard _label="Card with title and content">
<div>Card contents.</div>
</KolCard>
<KolCard _label="Card with closer" _hasCloser>
<p>This card has a close button.</p>
</KolCard>
</div>
</>
);