MCP.so
登录
D

Dolt Mcp

@dolthub

关于 Dolt Mcp

The MCP server for Dolt databases.

基本信息

分类

其他

传输方式

stdio

发布者

dolthub

提交者

Dustin Brown

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "dolt-mcp": {
      "command": "/path/to/dolt-mcp-server",
      "args": [
        "--stdio",
        "--dolt-host",
        "0.0.0.0",
        "--dolt-port",
        "3306",
        "--dolt-user",
        "root",
        "--dolt-database",
        "your_database_name"
      ],
      "env": {
        "DOLT_PASSWORD": "your_password_if_needed"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Dolt Mcp?

The Dolt Mcp server is a Model Context Protocol (MCP) server that provides AI assistants with direct access to Dolt’s version‑controlled SQL databases. It exposes a comprehensive set of tools for database management, table operations, version control workflows, and data manipulation.

How to use Dolt Mcp?

Install Go 1.24.4 or later and ensure a running Dolt SQL server. Build from source (go build -o dolt-mcp-server ./mcp/cmd/dolt-mcp-server) or use the official Docker image (dolthub/dolt-mcp:latest). Run in stdio mode (recommended for AI assistants like Claude Desktop) or http mode, providing Dolt connection parameters via command‑line flags or environment variables. For Claude Desktop, add a configuration block to the MCP settings pointing to the binary with the required --stdio and Dolt arguments.

Key features of Dolt Mcp

  • 40+ tools for database and version control tasks
  • Create, drop, and manage databases
  • Create, alter, describe, and query tables
  • Branch management, commits, merges, and diffs
  • Data insert, update, delete, and read operations
  • Clone, fetch, push, and pull from remote repositories

Use cases of Dolt Mcp

  • AI‑assisted database schema design and data CRUD operations
  • Version‑controlled data pipelines: branching, staging, and merging datasets
  • Interactive data analysis and change tracking through natural language
  • Experimenting with data transformations on isolated branches
  • Integrating Dolt data operations into chatbots or custom web applications

FAQ from Dolt Mcp

What does the Dolt Mcp server do?

It bridges AI assistants (e.g., Claude) with Dolt’s version‑controlled SQL databases, enabling natural‑language database management, table operations, version control workflows, and remote repository actions.

How do I install and run the server?

Prerequisites are Go 1.24.4+ and a running Dolt SQL server. Build from source or use the Docker image. Run in stdio mode for AI assistants or http mode for web apps, providing Dolt connection details (host, user, database, password) via flags or environment variables.

Can I run the server with Docker?

Yes. Pull dolthub/dolt-mcp:latest and run it with the required environment variables (DOLT_HOST, DOLT_USER, DOLT_DATABASE) and optionally MCP_MODE (stdio or http) and MCP_PORT.

What server modes are available?

Two modes: stdio (over standard input/output, ideal for Claude Desktop) and http (exposes a REST API for custom integrations). Set via the -stdio/--http flag or the MCP_MODE environment variable.

How do I authenticate to the Dolt SQL server?

Provide the username (--dolt-user), optional password (--dolt-password or DOLT_PASSWORD environment variable), and the target database (--dolt-database). The server passes these credentials to the Dolt SQL server.

评论

其他 分类下的更多 MCP 服务器