Skip to main content
Glama

Karakeep MCP server

by karakeep-app
_layout.tsx1.34 kB
import React, { useLayoutEffect } from "react"; import { Tabs, useNavigation } from "expo-router"; import { StyledTabs } from "@/components/navigation/tabs"; import { useColorScheme } from "@/lib/useColorScheme"; import { ClipboardList, Home, Settings } from "lucide-react-native"; export default function TabLayout() { const { colors } = useColorScheme(); const navigation = useNavigation(); // Hide the header on the parent screen useLayoutEffect(() => { navigation.setOptions({ headerShown: false, }); }, [navigation]); return ( <StyledTabs tabBarClassName="bg-gray-100 dark:bg-background" sceneClassName="bg-gray-100 dark:bg-background" screenOptions={{ headerShown: false, tabBarActiveTintColor: colors.foreground, }} > <Tabs.Screen name="index" options={{ title: "Home", tabBarIcon: ({ color }) => <Home color={color} />, }} /> <Tabs.Screen name="lists" options={{ title: "Lists", tabBarIcon: ({ color }) => <ClipboardList color={color} />, }} /> <Tabs.Screen name="settings" options={{ title: "Settings", tabBarIcon: ({ color }) => <Settings color={color} />, }} /> </StyledTabs> ); }

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