Skip to main content
Glama

Convex MCP server

Official
by get-convex
IntegrationsView.tsx1.07 kB
import { DeploymentSettingsLayout } from "@common/layouts/DeploymentSettingsLayout"; import { Integrations } from "@common/features/settings/components/integrations/Integrations"; import { useQuery } from "convex/react"; import udfs from "@common/udfs"; import { DeploymentInfoContext } from "@common/lib/deploymentContext"; import { useContext } from "react"; import { LoadingTransition } from "@ui/Loading"; export function IntegrationsView() { const { useCurrentTeam, useTeamEntitlements } = useContext( DeploymentInfoContext, ); const team = useCurrentTeam(); const entitlements = useTeamEntitlements(team?.id); const integrations = useQuery(udfs.listConfiguredSinks.default); return ( <DeploymentSettingsLayout page="integrations"> <LoadingTransition> {team && entitlements && integrations !== undefined && ( <Integrations team={team} entitlements={entitlements} integrations={integrations} /> )} </LoadingTransition> </DeploymentSettingsLayout> ); }

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