
Dolt MCP Server
by dolthub
Direct AI access to Dolt and DoltgreSQL version-controlled SQL databases for data management and version control.
What it does
The Dolt MCP Server provides AI assistants with direct access to Dolt and DoltgreSQL databases. It allows AI tools to perform standard SQL operations while leveraging Dolt's unique version control capabilities, such as branching, committing, and merging data.
Tools
query: Execute SELECT queries for data retrieval.exec: Execute INSERT, UPDATE, and DELETE queries.create_dolt_branch: Create new data branches for experimentation.create_dolt_commit: Commit changes to the database version history.merge_dolt_branch: Merge changes between branches.list_dolt_diff_changes_in_working_set: Identify uncommitted changes in the database.clone_database: Clone remote Dolt databases.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"dolt-mcp": {
"command": "/path/to/dolt-mcp-server",
"args": [
"--stdio",
"--dolt",
"--host", "0.0.0.0",
"--port", "3306",
"--user", "root",
"--database", "your_database_name"
],
"env": {
"DOLT_PASSWORD": "your_password"
}
}
}
}
Supported hosts
- Claude Desktop
Quick install
go build -o dolt-mcp-server ./mcp/cmd/dolt-mcp-serverInformation
- Pricing
- free
- Published
- 5/15/2026






