We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/universal-crypto-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
'use client';
import { motion } from 'framer-motion';
export default function Footer() {
return (
<motion.footer
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
className="py-20 px-6"
>
<div className="max-w-5xl mx-auto text-center">
<p className="text-ghost text-xs tracking-wide">
MIT License · Built for the open web
</p>
</div>
</motion.footer>
);
}