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 type { FunctionalComponent as FC } from '@stencil/core';
import { h } from '@stencil/core';
import type { FunctionalComponentProps } from '../generic-types';
import type { ImageApi } from './api';
export const ImageFC: FC<FunctionalComponentProps<ImageApi>> = (props) => {
const { alt, loading, sizes, src, srcset } = props;
return <img class="kol-image" alt={alt} loading={loading} sizes={sizes || undefined} src={src} srcset={srcset || undefined} />;
};