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 InputVariant {
/**
* @default "md"
*/
size: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl"
/**
* @default "outline"
*/
variant: "outline" | "ghost"
}
type InputVariantMap = {
[key in keyof InputVariant]: Array<InputVariant[key]>
}
export type InputVariantProps = {
[key in keyof InputVariant]?: ConditionalValue<InputVariant[key]> | undefined
}
export interface InputRecipe {
__type: InputVariantProps
(props?: InputVariantProps): string
raw: (props?: InputVariantProps) => InputVariantProps
variantMap: InputVariantMap
variantKeys: Array<keyof InputVariant>
splitVariantProps<Props extends InputVariantProps>(props: Props): [InputVariantProps, Pretty<DistributiveOmit<Props, keyof InputVariantProps>>]
getVariantProps: (props?: InputVariantProps) => InputVariantProps
}
export declare const input: InputRecipe