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
"use client";
import type { Assign, PolymorphicProps } from "@ark-ui/react";
import { ark } from "@ark-ui/react/factory";
import { alert } from "@/styled-system/recipes";
import type { ComponentProps, HTMLStyledProps } from "@/styled-system/types";
import { createStyleContext } from "@/utils/create-style-context";
const { withProvider, withContext } = createStyleContext(alert);
export type RootProps = ComponentProps<typeof Root>;
export const Root = withProvider<
HTMLDivElement,
Assign<HTMLStyledProps<"div">, PolymorphicProps>
>(ark.div, "root");
export const Content = withContext<
HTMLDivElement,
Assign<HTMLStyledProps<"div">, PolymorphicProps>
>(ark.div, "content");
export const Description = withContext<
HTMLDivElement,
Assign<HTMLStyledProps<"div">, PolymorphicProps>
>(ark.div, "description");
export const Icon = withContext<
HTMLOrSVGElement,
Assign<HTMLStyledProps<"svg">, PolymorphicProps>
>(ark.svg, "icon");
export const Title = withContext<
HTMLHeadingElement,
Assign<HTMLStyledProps<"h5">, PolymorphicProps>
>(ark.h5, "title");