Skip to main content
Glama

Convex MCP server

Official
by get-convex
useLastCreated.tsx557 B
import { useTeams } from "api/teams"; import { useProjects } from "api/projects"; import { useDeployments } from "api/deployments"; export function useLastCreatedTeam() { const { teams } = useTeams(); return teams?.at(-1); } export function useLastCreatedProject() { const team = useLastCreatedTeam(); const projects = useProjects(team?.id); return projects?.at(-1); } export function useLastCreatedDeployment() { const project = useLastCreatedProject(); const { deployments } = useDeployments(project?.id); return deployments?.at(-1); }

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