Skip to main content
Glama

Convex MCP server

Official
by get-convex
HelloWave.tsx869 B
import { StyleSheet } from "react-native"; import Animated, { useSharedValue, useAnimatedStyle, withTiming, withRepeat, withSequence, } from "react-native-reanimated"; import { ThemedText } from "@/components/ThemedText"; export function HelloWave() { const rotationAnimation = useSharedValue(0); rotationAnimation.value = withRepeat( withSequence( withTiming(25, { duration: 150 }), withTiming(0, { duration: 150 }), ), 4, // Run the animation 4 times ); const animatedStyle = useAnimatedStyle(() => ({ transform: [{ rotate: `${rotationAnimation.value}deg` }], })); return ( <Animated.View style={animatedStyle}> <ThemedText style={styles.text}>👋</ThemedText> </Animated.View> ); } const styles = StyleSheet.create({ text: { fontSize: 28, lineHeight: 32, marginTop: -6, }, });

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/get-convex/convex-backend'

If you have feedback or need assistance with the MCP directory API, please join our Discord server