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
{
"$schema": "./node_modules/convex/schemas/convex.schema.json",
"authKit": {
"dev": {
"configure": {
"redirectUris": ["http://localhost:3000/callback"],
"appHomepageUrl": "http://localhost:3000",
"corsOrigins": ["http://localhost:3000"]
},
"localEnvVars": {
"WORKOS_CLIENT_ID": "${authEnv.WORKOS_CLIENT_ID}",
"WORKOS_API_KEY": "${authEnv.WORKOS_API_KEY}",
"WORKOS_REDIRECT_URI": "http://localhost:3000/callback"
}
},
"preview": {
"configure": {
"redirectUris": ["https://${buildEnv.VERCEL_URL}/callback"],
"appHomepageUrl": "https://${buildEnv.VERCEL_URL}",
"corsOrigins": ["https://${buildEnv.VERCEL_URL}"]
}
},
"prod": {
"configure": {
"redirectUris": ["https://${buildEnv.VERCEL_URL}/callback"],
"appHomepageUrl": "https://${buildEnv.VERCEL_URL}",
"corsOrigins": ["https://${buildEnv.VERCEL_URL}"]
}
}
}
}