We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/* eslint-disable */
import type { ConditionalValue } from '../types/index';
import type { DistributiveOmit, Pretty } from '../types/system-types';
interface TextVariant {
variant: "heading"
size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl"
}
type TextVariantMap = {
[key in keyof TextVariant]: Array<TextVariant[key]>
}
export type TextVariantProps = {
[key in keyof TextVariant]?: ConditionalValue<TextVariant[key]> | undefined
}
export interface TextRecipe {
__type: TextVariantProps
(props?: TextVariantProps): string
raw: (props?: TextVariantProps) => TextVariantProps
variantMap: TextVariantMap
variantKeys: Array<keyof TextVariant>
splitVariantProps<Props extends TextVariantProps>(props: Props): [TextVariantProps, Pretty<DistributiveOmit<Props, keyof TextVariantProps>>]
getVariantProps: (props?: TextVariantProps) => TextVariantProps
}
export declare const text: TextRecipe