Skip to main content
Glama

BluestoneApps MCP Remote Server

by lallen30
Button.tsx1.16 kB
import React from 'react'; import { TouchableOpacity, Text, StyleSheet, ViewStyle, TextStyle, ActivityIndicator, } from 'react-native'; interface ButtonProps { title: string; onPress: () => void; style?: ViewStyle; textStyle?: TextStyle; loading?: boolean; disabled?: boolean; } export const Button: React.FC<ButtonProps> = ({ title, onPress, style, textStyle, loading = false, disabled = false, }) => { return ( <TouchableOpacity style={[ styles.button, style, disabled && styles.disabledButton, ]} onPress={onPress} disabled={disabled || loading} > {loading ? ( <ActivityIndicator color="#fff" /> ) : ( <Text style={[styles.text, textStyle]}>{title}</Text> )} </TouchableOpacity> ); }; const styles = StyleSheet.create({ button: { backgroundColor: '#007AFF', paddingVertical: 12, paddingHorizontal: 24, borderRadius: 8, alignItems: 'center', justifyContent: 'center', }, text: { color: '#fff', fontSize: 16, fontWeight: '600', }, disabledButton: { opacity: 0.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/lallen30/mcp-remote-server'

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