Skip to main content
Glama

Karakeep MCP server

by karakeep-app
MobileSidebar.tsx732 B
import { useTranslation } from "@/lib/i18n/server"; import { TFunction } from "i18next"; import MobileSidebarItem from "./ModileSidebarItem"; import { TSidebarItem } from "./TSidebarItem"; export default async function MobileSidebar({ items, }: { items: (t: TFunction) => TSidebarItem[]; }) { // oxlint-disable-next-line rules-of-hooks const { t } = await useTranslation(); return ( <aside className="w-full overflow-x-auto"> <ul className="flex justify-between space-x-2 border-b-black px-5 py-2 pt-5"> {items(t).map((item) => ( <MobileSidebarItem key={item.name} logo={item.icon} path={item.path} /> ))} </ul> </aside> ); }

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