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 { linkList } from "@/api/openapi-server/links";
import { UnreadyBanner } from "@/components/site/Unready";
import { LinkIndexScreen } from "@/screens/library/links/LinkIndexScreen";
type Props = {
searchParams: Promise<{
q: string;
page: number;
}>;
};
export default async function Page(props: Props) {
try {
const searchParams = await props.searchParams;
const { data } = await linkList({
q: searchParams.q,
page: searchParams.page?.toString(),
});
return (
<LinkIndexScreen
initialResult={data}
query={searchParams.q}
page={searchParams.page}
/>
);
} catch (e) {
return <UnreadyBanner error={e} />;
}
}