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 BadgeVariant {
/**
* @default "subtle"
*/
variant: "solid" | "subtle" | "outline"
/**
* @default "md"
*/
size: "sm" | "md" | "lg"
}
type BadgeVariantMap = {
[key in keyof BadgeVariant]: Array<BadgeVariant[key]>
}
export type BadgeVariantProps = {
[key in keyof BadgeVariant]?: ConditionalValue<BadgeVariant[key]> | undefined
}
export interface BadgeRecipe {
__type: BadgeVariantProps
(props?: BadgeVariantProps): string
raw: (props?: BadgeVariantProps) => BadgeVariantProps
variantMap: BadgeVariantMap
variantKeys: Array<keyof BadgeVariant>
splitVariantProps<Props extends BadgeVariantProps>(props: Props): [BadgeVariantProps, Pretty<DistributiveOmit<Props, keyof BadgeVariantProps>>]
getVariantProps: (props?: BadgeVariantProps) => BadgeVariantProps
}
export declare const badge: BadgeRecipe