Retrieve available Verodat accounts
List workspaces within a Verodat account
List datasets in a workspace
Retrieve actual data from a dataset
Retrieve field definitions for a dataset
Retrieve existing AI queries
Get workspace context and data structure
Execute AI-powered queries on datasets
Create a new dataset with defined schema
Upload data rows to existing datasets
Verodat MCP Server provides a standardized interface for AI models to interact with Verodat's data management platform. It enables seamless integration between AI systems like Claude Desktop and Verodat's powerful data consumption, design, and management capabilities. Through this integration, users can retrieve, analyze, create, and manipulate datasets directly through conversational AI interfaces.
Verodat MCP Server enables AI models to interact with Verodat's data management platform through a standardized interface. This integration allows you to leverage AI models like Claude to work with your data in Verodat, performing operations from simple data retrieval to complex dataset creation and management.
Before installing the Verodat MCP Server, ensure you have:
The easiest way to install Verodat MCP Server for Claude Desktop is through Smithery:
npx -y @smithery/cli install @Verodat/verodat-mcp-server --client claude
git clone https://github.com/Verodat/verodat-mcp-server.git
cd verodat-mcp-server
npm install
npm run build
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
The Verodat MCP Server offers three different capability levels that you can configure:
You can configure one or more of these capability levels in your Claude Desktop configuration file. Here's an example configuration for the "Consume" level:
{
"mcpServers": {
"verodat-consume": {
"command": "node",
"args": [
"path/to/verodat-mcp-server/build/src/consume.js"
],
"env": {
"VERODAT_AI_API_KEY": "your-api-key",
"VERODAT_API_BASE_URL": "https://verodat.io/api/v3"
}
}
}
}
Replace "your-api-key"
with your actual Verodat AI API key, and adjust the path to the built JavaScript file as needed.
The following environment variables are required:
VERODAT_AI_API_KEY
: Your Verodat API key for authenticationVERODAT_API_BASE_URL
: The base URL for the Verodat API (defaults to "https://verodat.io/api/v3")After installation and configuration, restart Claude Desktop. You can now interact with your Verodat data by asking Claude to:
Example prompts:
If you encounter issues: