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•372 B
import React from 'react';
import { KolVersion } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const VersionBasic: FC = () => (
<>
<SampleDescription>
<p>KolVersion renders a label showing the given version number.</p>
</SampleDescription>
<KolVersion _label="1.1.1" />
</>
);