Skip to main content
Glama

Karakeep MCP server

by karakeep-app
stack.tsx827 B
import { TextStyle, ViewStyle } from "react-native"; import { Stack } from "expo-router/stack"; import { cssInterop } from "nativewind"; interface StackProps extends React.ComponentProps<typeof Stack> { contentStyle?: ViewStyle; headerStyle?: TextStyle; } function StackImpl({ contentStyle, headerStyle, ...props }: StackProps) { props.screenOptions = { ...props.screenOptions, contentStyle, headerStyle: { backgroundColor: headerStyle?.backgroundColor?.toString(), }, navigationBarColor: contentStyle?.backgroundColor?.toString(), headerTintColor: headerStyle?.color?.toString(), }; return <Stack {...props} />; } // Changing this requires reloading the app export const StyledStack = cssInterop(StackImpl, { contentClassName: "contentStyle", headerClassName: "headerStyle", });

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