Skip to main content
Glama
SiTextInput.vue604 B
<template> <div :class="classes"> <label class="text-xs font-normal block my-1">{{ title }}</label> <input v-model="value" type="text" class="w-full p-1 h-7 text-xs rounded-sm border-1 dark:text-black bg-neutral-50 border-neutral-300 placeholder:italic" :placeholder="placeholder" /> </div> </template> <script setup lang="ts"> import { computed, ref } from "vue"; const props = defineProps<{ title?: string; placeholder?: string; icon?: string; class?: string; }>(); const classes = computed(() => props.class); const value = ref<string>(); </script>

Latest Blog Posts

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/systeminit/si'

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