Skip to main content
Glama

Karakeep MCP server

by karakeep-app
UnknownCard.tsx936 B
"use client"; import { useTranslation } from "@/lib/i18n/client"; import { AlertCircle } from "lucide-react"; import type { ZBookmark } from "@karakeep/shared/types/bookmarks"; import { BookmarkLayoutAdaptingCard } from "./BookmarkLayoutAdaptingCard"; export default function UnknownCard({ bookmark, className, }: { bookmark: ZBookmark; className?: string; }) { const { t } = useTranslation(); return ( <BookmarkLayoutAdaptingCard title={bookmark.title} bookmark={bookmark} className={className} wrapTags={false} image={(_layout) => ( <div className="flex size-full flex-1 flex-col items-center justify-center bg-red-50 dark:bg-red-950/10"> <AlertCircle className="mb-3 h-10 w-10 text-red-500" /> <h3 className="font-medium text-red-700 dark:text-red-400"> {t("common.something_went_wrong")} </h3> </div> )} /> ); }

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/karakeep-app/karakeep'

If you have feedback or need assistance with the MCP directory API, please join our Discord server