Skip to main content
Glama

Convex MCP server

Official
by get-convex
_index.tsx625 B
import type { MetaFunction } from "@remix-run/node"; import { api } from "convex/_generated/api"; import { useQuery } from "convex/react"; export const meta: MetaFunction = () => { return [ { title: "New Remix App" }, { name: "description", content: "Welcome to Remix!" }, ]; }; export default function Index() { const tasks = useQuery(api.tasks.get); return ( <div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}> <h1>Welcome to Remix</h1> {tasks === undefined ? "loading..." : tasks.map(({ _id, text }) => <div key={_id}>{text}</div>)} </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