Skip to main content
Glama

Karakeep MCP server

by karakeep-app
index.tsx443 B
import { Redirect } from "expo-router"; import FullPageSpinner from "@/components/ui/FullPageSpinner"; import { useIsLoggedIn } from "@/lib/session"; export default function App() { const isLoggedIn = useIsLoggedIn(); if (isLoggedIn === undefined) { // Wait until it's loaded return <FullPageSpinner />; } else if (isLoggedIn) { return <Redirect href="dashboard" />; } else { return <Redirect href="signin" />; } }

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