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 { IconEditor } from "@/components/site/IconEditor/IconEditor";
import { Unready } from "@/components/site/Unready";
import { InfoIcon } from "@/components/ui/icons/Info";
import { HStack, VStack } from "@/styled-system/jsx";
import { Props, useEditAvatar } from "./useEditAvatar";
export function EditAvatarScreen(props: Props) {
const { ready, error, initialValue, handleSave } = useEditAvatar(props);
if (!ready) {
return <Unready error={error} />;
}
return (
<VStack maxW="prose">
<IconEditor
isAvatar
initialValue={initialValue}
onUpload={handleSave}
showPreviews
/>
<HStack color="fg.subtle">
<InfoIcon width="4" />
<p>You can pinch or use a mouse wheel to zoom/crop.</p>
</HStack>
</VStack>
);
}