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
access-key.tsx•793 B
import type { FC } from 'react';
import React from 'react';
import { KolLink } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
export const LinkAccessKey: FC = () => (
<>
<SampleDescription>
<p>This sample shows KolLink with access key. The access keys can be used to trigger the buttons using the keyboard.</p>
</SampleDescription>
<div className="grid gap-4">
<KolLink _href="#/back-page" _label="With S access key" _accessKey="S" />
<KolLink _href="#/back-page" _label="Very small s" _accessKey="s" />
<KolLink _href="#/back-page" _label="Access key does not appear in label" _accessKey="s" />
<KolLink _hideLabel _icons="kolicon-house" _href="#/back-page" _label="access key without label" _accessKey="s" />
</div>
</>
);