Skip to main content
Glama
page-transition.tsx507 B
"use client" import { motion } from "framer-motion" import { usePathname } from "next/navigation" import type { ReactNode } from "react" export function PageTransition({ children }: { children: ReactNode }) { const pathname = usePathname() return ( <motion.div key={pathname} initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: 20 }} transition={{ duration: 0.3, ease: "easeInOut" }} > {children} </motion.div> ) }

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/metacode0602/open-mcp'

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