Skip to main content
Glama

Convex MCP server

Official
by get-convex
start-dev.js897 B
#!/usr/bin/env node const { execSync } = require("child_process"); const { detect } = require("detect-port"); async function startDev() { console.log("📁 Cleaning docs/api directory..."); execSync("npx rimraf docs/api", { stdio: "inherit" }); console.log("📚 Generating platform API documentation..."); execSync("npm run generate-platform-api", { stdio: "inherit" }); const defaultPort = 3000; const port = await detect(defaultPort); if (port !== defaultPort) { console.log( `⚠️ Port ${defaultPort} is in use, using port ${port} instead.\n`, ); } else { console.log(`✅ Using port ${port}\n`); } console.log(`🌐 Starting Docusaurus server on port ${port}...`); console.log( `📖 Documentation will be available at: http://localhost:${port}\n`, ); execSync(`docusaurus start --port ${port}`, { stdio: "inherit" }); } startDev();

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