Skip to main content
Glama

Karakeep MCP server

by karakeep-app
page.tsx705 B
"use client"; import { useEffect } from "react"; import { useRouter } from "next/navigation"; import { signOut } from "next-auth/react"; import { useSearchHistory } from "@karakeep/shared-react/hooks/search-history"; export default function Logout() { const router = useRouter(); const { clearHistory } = useSearchHistory({ getItem: (k: string) => localStorage.getItem(k), setItem: (k: string, v: string) => localStorage.setItem(k, v), removeItem: (k: string) => localStorage.removeItem(k), }); useEffect(() => { signOut({ redirect: false, callbackUrl: "/", }).then((d) => { clearHistory(); router.push(d.url); }); }, []); return <span />; }

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