Skip to main content
Glama

Karakeep MCP server

by karakeep-app
BookmarkLists.tsx1.22 kB
import { X } from "lucide-react"; import { useBookmarkLists, useRemoveBookmarkFromList, } from "@karakeep/shared-react/hooks/lists"; import { api } from "../utils/trpc"; import { Button } from "./ui/button"; export default function BookmarkLists({ bookmarkId }: { bookmarkId: string }) { const { data: allLists } = useBookmarkLists(); const { mutate: deleteFromList } = useRemoveBookmarkFromList(); const { data: lists } = api.lists.getListsOfBookmark.useQuery({ bookmarkId }); if (!lists || !allLists) { return null; } return ( <ul className="flex flex-col gap-1"> {lists.lists.map((l) => ( <li key={l.id} className="flex items-center justify-between rounded border border-border bg-background p-2 text-sm text-foreground" > <span> {allLists .getPathById(l.id)! .map((l) => `${l.icon} ${l.name}`) .join(" / ")} </span> <Button variant="ghost" size="sm" onClick={() => deleteFromList({ bookmarkId, listId: l.id })} > <X className="size-4" /> </Button> </li> ))} </ul> ); }

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