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
import { KolInputText } from '@public-ui/react-v19';
import type { FC } from 'react';
import React from 'react';
import { SampleDescription } from '../SampleDescription';
export const InputTextBackground: FC = () => (
<>
<SampleDescription>
<p>This story showcases the component placed on a colored background.</p>
</SampleDescription>
<div className="grid gap-4 bg-blue-400 p-4 rounded">
<strong>Default background:</strong>
<KolInputText _label="First name" _value="John Doe" />
<strong>Unset background:</strong>
<KolInputText style={{ backgroundColor: 'unset' }} _label="First name" _value="John Doe" />
</div>
</>
);