KosmoKrator

data

Convex MCP, CLI, and Lua Integration for AI Agents

Convex integration docs for AI agents: MCP gateway setup, Convex CLI commands, Lua API reference, credentials, and function schemas.

Convex for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
convex.convex_list_tables Read read 0 List all tables in the Convex deployment.
convex.convex_get_table Read read 1 Get metadata and schema for a specific Convex table.
convex.convex_query_documents Read read 5 Query documents from a Convex table with optional filtering and pagination.
convex.convex_create_document Write write 2 Create a new document in a Convex table.
convex.convex_update_document Write write 3 Update an existing document in a Convex table.
convex.convex_delete_document Write write 2 Delete a document from a Convex table.
convex.convex_get_current_user Read read 0 Get the authenticated Convex user's profile information. Returns account details like name and email. Use this to verify API connectivity.