Skip to main content
Glama

Convex MCP server

Official
by get-convex
profile.$.tsx1.09 kB
import { Link, Outlet, createFileRoute } from '@tanstack/react-router' import { fetchPosts } from '~/utils/posts.js' export const Route = createFileRoute('/_authed/profile/$')({ loader: () => fetchPosts(), component: PostsComponent, }) function PostsComponent() { const posts = Route.useLoaderData() return ( <div className="p-2 flex gap-2"> <ul className="list-disc pl-4"> {[...posts, { id: 'i-do-not-exist', title: 'Non-existent Post' }].map( (post) => { return ( <li key={post.id} className="whitespace-nowrap"> <Link to="/posts/$postId" params={{ postId: post.id, }} className="block py-1 text-blue-800 hover:text-blue-600" activeProps={{ className: 'text-black font-bold' }} > <div>{post.title.substring(0, 20)}</div> </Link> </li> ) }, )} </ul> <hr /> <Outlet /> </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/get-convex/convex-backend'

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