C
Convex
Query Convex tables and functions.
·No reviews yet
Share:
About
Auto-generated
Convex is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Convex.
- What is the Convex MCP for?
- The Convex MCP enables querying Convex tables and functions. It integrates Convex database capabilities into compatible MCP clients, allowing developers to interact with their data directly from their development environment.
- How can I install the Convex MCP in a client like Cline?
- Installation typically involves adding the Convex MCP to your client's configuration. For Cline, this would likely be through a command-line interface or a configuration file, specifying the MCP's slug and transport. Refer to your client's documentation for specific installation instructions.
- Does the Convex MCP require an API key for authentication?
- Yes, the Convex MCP uses an API key for authentication. You will need to provide a valid API key to connect to your Convex deployment and access its functionalities.
- What kind of operations can I perform with the Convex MCP?
- You can query Convex tables and invoke Convex functions. This means you can read and manipulate data stored in your Convex database, as well as execute server-side logic defined in your Convex project.
- What is a common limitation of the Convex MCP?
- A common limitation is that the MCP's capabilities are restricted to the operations exposed by the Convex API. Complex data transformations or custom integrations not directly supported by Convex functions may require additional client-side processing or external services.
- Is there a cost associated with using the Convex MCP?
- The Convex MCP itself is provided by the community and is open source. However, the underlying Convex service may have its own pricing model based on usage, data storage, or other factors. Consult the Convex documentation for pricing details.
Install Convex
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"convex": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-convex"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"convex": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-convex"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"convex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-convex"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.