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 { Generic } from 'adopted-style-sheets';
import type { WatchStringOptions } from '../utils';
import { watchString } from '../utils';
/* types */
export type NamePropType = string;
/**
* Defines the technical name of an input field.
*/
export type PropName = {
name: NamePropType;
};
/* validator */
export const validateName = (component: Generic.Element.Component, value?: NamePropType, options?: WatchStringOptions): void => {
watchString(component, '_name', value, options);
};