Skip to main content
Glama

Convex MCP server

Official
by get-convex
deployment-openapi.json2.87 kB
{ "openapi": "3.1.0", "info": { "title": "Convex Deployment API", "description": "Admin API for interacting with deployments", "license": { "name": "LicenseRef-FSL-1.1-Apache-2.0", "identifier": "LicenseRef-FSL-1.1-Apache-2.0" }, "version": "1.0.0" }, "servers": [ { "url": "/api/v1", "description": "Deployment API" } ], "paths": { "/update_environment_variables": { "post": { "summary": "Update environment variables", "description": "Update one or many environment variables in a deployment.\nThis will invalidate all subscriptions, since environment variables\nare accessible in queries but are not part of the cache key of a query\nresult.", "operationId": "update_environment_variables", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UpdateEnvVarsRequest" } } }, "required": true }, "responses": { "200": { "description": "" } } } }, "/list_environment_variables": { "get": { "summary": "List environment variables", "description": "Get all environment variables in a deployment.\nIn the future this might not include \"secret\" environment\nvariables.", "operationId": "list_environment_variables", "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ListEnvVarsResponse" } } } } } } } }, "components": { "schemas": { "ListEnvVarsResponse": { "type": "object", "required": [ "environmentVariables" ], "properties": { "environmentVariables": { "type": "object", "additionalProperties": { "type": "string" }, "propertyNames": { "type": "string" } } } }, "UpdateEnvVarRequest": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "value": { "type": [ "string", "null" ] } } }, "UpdateEnvVarsRequest": { "type": "object", "required": [ "changes" ], "properties": { "changes": { "type": "array", "items": { "$ref": "#/components/schemas/UpdateEnvVarRequest" } } } } } } }

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