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
import { getPatternStyles, patternFns } from '../helpers.mjs';
import { css } from '../css/index.mjs';
const CardBoxConfig = {
transform(props15) {
const { kind, display } = props15;
const padding = kind === "edge" ? "0" : "2";
return {
display,
flexDirection: "column",
gap: "1",
width: "full",
boxShadow: "sm",
borderRadius: "lg",
backgroundColor: "bg.default",
padding
};
}}
export const getCardBoxStyle = (styles = {}) => {
const _styles = getPatternStyles(CardBoxConfig, styles)
return CardBoxConfig.transform(_styles, patternFns)
}
export const CardBox = (styles) => css(getCardBoxStyle(styles))
CardBox.raw = getCardBoxStyle