We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Test2.vue•282 B
<script setup lang="ts">
defineProps<{
title: string;
color?: string;
}>();
</script>
<template>
<div>
<h1 :style="{ color: color }">{{ title }}</h1>
<h1>Hello World 2 (should be extracted)</h1>
<p>This is a test 2 (should be extracted)</p>
</div>
</template>