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 { ButtonProps } from "@/components/ui/button";
import { IconButton } from "@/components/ui/icon-button";
import { LikeIcon, LikeSavedIcon } from "@/components/ui/icons/Like";
type Props = ButtonProps & { liked: boolean };
export function LikeAction(props: Props) {
const { liked, ...rest } = props;
return (
<IconButton
variant="subtle"
size="xs"
aria-pressed={liked}
aria-label={liked ? "Unlike" : "Like"}
title={liked ? "Unlike" : "Like"}
{...rest}
>
{liked ? <LikeSavedIcon /> : <LikeIcon />}
</IconButton>
);
}