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 { useDisclosure } from "src/utils/useDisclosure";
import { ProfileReference } from "@/api/openapi-schema";
import * as Menu from "@/components/ui/menu";
import { ReportIcon } from "../ui/icons/Report";
import { ReportMemberModal } from "./ReportMemberModal";
type Props = {
profile: ProfileReference;
};
export function ReportMemberMenuItem({ profile }: Props) {
const disclosure = useDisclosure();
return (
<>
<Menu.Item value="report-member" onClick={disclosure.onOpen}>
<ReportIcon />
Report member
</Menu.Item>
<ReportMemberModal profile={profile} {...disclosure} />
</>
);
}