Skip to main content
Glama

Storyden

by Southclaws
Mozilla Public License 2.0
229
LibraryIndexScreen.tsx882 B
"use client"; import { Unready } from "src/components/site/Unready"; import { Breadcrumbs } from "@/components/library/Breadcrumbs"; import { LibraryEmptyState } from "@/components/library/LibraryEmptyState"; import { NodeCardGrid } from "@/components/library/NodeCardList"; import { VStack } from "@/styled-system/jsx"; import { Props, useLibraryIndexScreen } from "./useLibraryIndexScreen"; export function LibraryIndexScreen(props: Props) { const { ready, data, error } = useLibraryIndexScreen(props); if (!ready) return <Unready error={error} />; const { nodes } = data; return ( <VStack gap="4"> <Breadcrumbs libraryPath={[]} visibility="draft" create="show" /> {nodes.data.nodes.length === 0 ? ( <LibraryEmptyState /> ) : ( <NodeCardGrid libraryPath={[]} context="library" {...nodes.data} /> )} </VStack> ); }

MCP directory API

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