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 { useNodeList } from "@/api/openapi-client/nodes";
import { Visibility } from "@/api/openapi-schema";
import { QueueNodeList } from "@/components/queue/QueueNodeList";
import { Unready } from "@/components/site/Unready";
import { Heading } from "@/components/ui/heading";
import { LStack } from "@/styled-system/jsx";
export function QueueScreen() {
const { data, error } = useNodeList({
visibility: [Visibility.review],
format: "flat",
});
if (!data) {
return <Unready error={error} />;
}
return (
<LStack>
<Heading>Submission queue</Heading>
<QueueNodeList nodes={data.nodes} />
</LStack>
);
}