Skip to main content
Glama

Karakeep MCP server

by karakeep-app
Header.tsx1.12 kB
import Link from "next/link"; import { redirect } from "next/navigation"; import GlobalActions from "@/components/dashboard/GlobalActions"; import ProfileOptions from "@/components/dashboard/header/ProfileOptions"; import { SearchInput } from "@/components/dashboard/search/SearchInput"; import KarakeepLogo from "@/components/KarakeepIcon"; import { getServerAuthSession } from "@/server/auth"; export default async function Header() { const session = await getServerAuthSession(); if (!session) { redirect("/"); } return ( <header className="sticky left-0 right-0 top-0 z-50 flex h-16 items-center justify-between overflow-x-auto overflow-y-hidden bg-background p-4 shadow"> <div className="hidden items-center sm:flex"> <Link href={"/dashboard/bookmarks"} className="w-56"> <KarakeepLogo height={38} /> </Link> </div> <div className="flex flex-1 gap-2"> <SearchInput className="rounded-md bg-muted" /> <GlobalActions /> </div> <div className="flex items-center"> <ProfileOptions /> </div> </header> ); }

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