IntegrateIntegrate
Integrations

Convex Integration

Manage Convex projects, deployments, regions, classes, and environment variables

The Convex integration provides access to manage Convex projects, deployments, regions, classes, and environment variables through the Integrate MCP server.

Installation

The Convex integration is included with the SDK:

import { convexIntegration } from "integrate-sdk/server";

Setup

Add Convex to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, convexIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    convexIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

const result = await client.convex.managementTokenDetails({});

console.log(result);

Environment Variables

  • CONVEX_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

convex_management_token_details

Management token details

No parameters.

convex_management_list_projects

Management list projects

Prop

Type

convex_management_create_project

Management create project

Prop

Type

convex_management_get_project

Management get project

Prop

Type

convex_management_delete_project

Management delete project

Prop

Type

convex_management_list_deployments

Management list deployments

Prop

Type

convex_management_list_team_deployments

Management list team deployments

Prop

Type

convex_management_get_deployment

Management get deployment

Prop

Type

convex_management_create_deployment

Management create deployment

Prop

Type

convex_management_update_deployment

Management update deployment

Prop

Type

convex_management_delete_deployment

Management delete deployment

Prop

Type

convex_management_list_deployment_regions

Management list deployment regions

No parameters.

convex_management_list_deployment_classes

Management list deployment classes

No parameters.

convex_management_list_default_environment_variables

Management list default environment variables

Prop

Type

convex_management_update_default_environment_variables

Management update default environment variables

Prop

Type

convex_deployment_list_environment_variables

Deployment list environment variables

Prop

Type

convex_deployment_update_environment_variables

Deployment update environment variables

Prop

Type

Notes

  • Category: Engineering
  • Authentication mode: API key

On this page