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
/* types */
import type { Generic } from 'adopted-style-sheets';
import { watchString } from '../utils';
/**
* Defines the contextual relationship between a parent and its child elements.
* @see https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-owns
*/
export type AriaOwnsPropType = string;
export type PropAriaOwns = {
ariaOwns: AriaOwnsPropType;
};
/* validator */
export const validateAriaOwns = (component: Generic.Element.Component, value?: AriaOwnsPropType): void => {
watchString(component, '_ariaOwns', value, {
defaultValue: undefined,
});
};