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 React from 'react';
import { KolLink } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const LinkTarget: FC = () => (
<>
<SampleDescription>
<p>
This sample shows KolLink with different <code>_target</code>-properties.
</p>
</SampleDescription>
<div className="text-base d-flex gap-4">
<ul>
<li>
<KolLink _href="#/back-page" _label="Link without target" />
</li>
<li>
<KolLink _href="#/back-page" _label="Link with target (_self)" _target="_self" />
</li>
<li>
<KolLink _href="#/back-page" _label="Link with target (_blank)" _target="_blank" />
</li>
<li>
<KolLink _href="#/back-page" _icons="kolicon-house" _hideLabel _label="Link without target" />
</li>
<li>
<KolLink _href="#/back-page" _icons="kolicon-house" _hideLabel _label="Link with target (_self)" _target="_self" />
</li>
<li>
<KolLink _href="#/back-page" _icons="kolicon-house" _hideLabel _label="Link with target (_blank)" _target="_blank" />
</li>
</ul>
</div>
</>
);