Skip to main content
Glama

Convex MCP server

Official
by get-convex
updates.ts549 B
import { logMessage } from "../../bundler/log.js"; import { autoUpdateCursorRules } from "./cursorRules.js"; import { getVersion } from "./versionApi.js"; /** * Check the version of the `convex` NPM package and automatically update Cursor * rules if applicable. */ export async function checkVersion() { const version = await getVersion(); if (version === null) { return; } if (version.message) { logMessage(version.message); } if (version.cursorRulesHash) { await autoUpdateCursorRules(version.cursorRulesHash); } }

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