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 { ToasterService } from '@public-ui/components';
export function useToasterService() {
const toaster = ToasterService.getInstance(document);
const message = (message?: string) => {
void toaster.enqueue({
description: message || 'Hello',
label: `Hello`,
type: 'info',
});
};
const dummyClickEventHandler = () => {
message();
};
const buttonWithTextClickEventHandler = (e: Event) => {
const text = (e.currentTarget as { textContent?: string }).textContent;
message(text);
};
return {
dummyClickEventHandler,
buttonWithTextClickEventHandler,
};
}