Lakexpress MCP Server

MCP server for LakeXpress — automated database-to-cloud data pipeline as Parquet

Local serverstdioPython

What is the Lakexpress MCP server?

MCP server for LakeXpress — automated database-to-cloud data pipeline as Parquet. That is what the lakexpress mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP server for LakeXpress — automated database-to-cloud data pipeline as Parquet

  • 14 subcommands — supported: logdb management, config management, sync execution, status, and cleanup
  • 5 source databases — SQL Server, PostgreSQL, Oracle, MySQL, MariaDB
  • 6 log databases — SQL Server, PostgreSQL, MySQL, MariaDB, SQLite, DuckDB
  • 6 storage backends — Local, S3, S3-compatible, GCS, Azure ADLS Gen2, OneLake
  • 7 publish targets — Snowflake, Databricks, Fabric, BigQuery, MotherDuck, Glue, DuckLake
  • Command preview before execution with safety confirmation

The tools it exposes

The server publishes 6 tools. What each one is for:

  • preview_command — Build and preview any LakeXpress CLI command without executing it. Supports all 14 subcommands with full parameter validation
  • execute_command — Execute a previously previewed command. Requires confirmation: true as a safety mechanism
  • validate_auth_file — Validate that an authentication file exists, is valid JSON, and optionally check for specific auth_id entries
  • list_capabilities — List all supported source databases, log databases, storage backends, publishing targets, compression types, and available commands
  • suggest_workflow — Given a use case (source DB type, storage destination, optional publish target), suggest the full sequence of LakeXpress commands with example
  • get_version — Report the detected LakeXpress binary version and capabilities

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What it needs from you

Configuration is passed through the environment: LAKEXPRESS_PATH, LAKEXPRESS_TIMEOUT, LAKEXPRESS_LOG_DIR, FASTBCP_DIR_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Lakexpress's toolset — preview_command, execute_command, validate_auth_file and 3 more — is a fair guide to whether it matches your workflow. It is maintained by arpe-io; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
preview_commandBuild and preview any LakeXpress CLI command without executing it. Supports all 14 subcommands with full parameter validation.
execute_commandExecute a previously previewed command. Requires confirmation: true as a safety mechanism.
validate_auth_fileValidate that an authentication file exists, is valid JSON, and optionally check for specific auth_id entries.
list_capabilitiesList all supported source databases, log databases, storage backends, publishing targets, compression types, and available commands.
suggest_workflowGiven a use case (source DB type, storage destination, optional publish target), suggest the full sequence of LakeXpress commands with example parameters.
get_versionReport the detected LakeXpress binary version and capabilities.

How to install the Lakexpress MCP server

Or using the installed entry point:

```json
{
  "mcpServers": {
    "lakexpress": {
      "command": "lakexpress-mcp",
      "env": {
        "LAKEXPRESS_PATH": "/path/to/LakeXpress",
        "FASTBCP_DIR_PATH": "/path/to/FastBCP/"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LAKEXPRESS_PATHFilesystem location the server is allowed to use.Optional
LAKEXPRESS_TIMEOUTConfiguration value read at startup.Optional
LAKEXPRESS_LOG_DIRFilesystem location the server is allowed to use.Optional
FASTBCP_DIR_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Lakexpress to preview command.
  • Use Lakexpress to execute command.
  • Use Lakexpress to validate auth file.

Frequently asked questions

It connects Lakexpress to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (preview_command, execute_command, validate_auth_file, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lakexpress directly.