We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ofriw/chunkhound'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
<script setup lang="ts">
interface Props {
title: string
count: number
}
const props = defineProps<Props>()
const emit = defineEmits<{
update: [value: number]
}>()
function increment() {
emit('update', props.count + 1)
}
</script>
<template>
<div>
<h1>{{ title }}</h1>
<button @click="increment">{{ count }}</button>
</div>
</template>