Skip to main content
Glama

Karakeep MCP server

by karakeep-app
CustomSafeAreaView.tsx879 B
import { Platform, SafeAreaView } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useHeaderHeight } from "@react-navigation/elements"; export default function CustomSafeAreaView({ children, edges = ["top", "bottom"], }: { children: React.ReactNode; edges?: ("top" | "bottom")[]; }) { const insets = useSafeAreaInsets(); const headerHeight = useHeaderHeight(); return ( <SafeAreaView style={{ paddingTop: // Some ugly hacks to make the app look the same on both android and ios Platform.OS == "android" && edges.includes("top") ? headerHeight > 0 ? headerHeight : insets.top : undefined, paddingBottom: edges.includes("bottom") ? insets.bottom : undefined, }} > {children} </SafeAreaView> ); }

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