Unified MCP server for Arpe.io data tools — FastBCP, FastTransfer, LakeXpress, MigratorXpress
Project description
title: Arpeio MCP emoji: 🛠️ colorFrom: blue colorTo: indigo sdk: docker pinned: false
arpeio-mcp
Unified MCP server for Arpe.io data tools — build, preview, and execute high-performance data commands through AI assistants.
| Tool | Description |
|---|---|
| FastBCP | High-performance parallel database export to files and cloud |
| FastTransfer | High-performance parallel data transfer between databases |
| LakeXpress | Automated database-to-cloud data pipeline as Parquet |
| MigratorXpress | Cross-platform database migration with parallel transfer |
No binaries required. All tools work in command builder mode out of the box — command building, preview, and informational tools work without any Arpe.io binary installed. To enable execution, download the binaries from arpe.io and set the corresponding
*_PATHenvironment variables.
Connect your AI assistant
A hosted instance is available at https://arpe-io-arpeio-mcp.hf.space/sse — no installation required. For local installation with execution support, use the stdio transport via pip install arpeio-mcp.
ChatGPT | Claude Code | Claude Desktop | Cursor | Gemini CLI | HuggingChat | Kiro IDE | Le Chat (Mistral) | VS Code | Windsurf
ChatGPT
Available for paid plans only (Plus, Pro, Team, and Enterprise).
- Open ChatGPT in your browser, go to Settings > Apps and connectors.
- Open Advanced settings and enable Developer mode.
- Go to Connectors > Browse connectors > Add a new connector.
- Set the URL to
https://arpe-io-arpeio-mcp.hf.space/sseand save.
Claude Code
claude mcp add --transport sse arpeio https://arpe-io-arpeio-mcp.hf.space/sse
Or for local installation with execution support:
pip install arpeio-mcp
claude mcp add arpeio arpeio-mcp
Claude Desktop
Add the following to your Claude Desktop configuration file:
- Linux:
~/.config/Claude/claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Remote (no installation)
{
"mcpServers": {
"arpeio": {
"command": "npx",
"args": [
"mcp-remote",
"https://arpe-io-arpeio-mcp.hf.space/sse"
]
}
}
}
Local (with execution support)
{
"mcpServers": {
"arpeio": {
"command": "arpeio-mcp",
"env": {
"FASTBCP_PATH": "/path/to/FastBCP",
"FASTTRANSFER_PATH": "/path/to/FastTransfer",
"LAKEXPRESS_PATH": "/path/to/LakeXpress",
"MIGRATORXPRESS_PATH": "/path/to/MigratorXpress"
}
}
}
}
Cursor
- Open Cursor Settings and search for "MCP".
- Add a new MCP server with the following configuration:
{
"mcpServers": {
"arpeio": {
"url": "https://arpe-io-arpeio-mcp.hf.space/sse"
}
}
}
Gemini CLI
Add the following to your ~/.gemini/settings.json file:
{
"mcpServers": {
"arpeio": {
"uri": "https://arpe-io-arpeio-mcp.hf.space/sse"
}
}
}
HuggingChat
- In the chat interface, click the + icon, select MCP Servers, then Manage MCP Servers.
- Click Add Server.
- Set the Server Name to
Arpe.ioand the Server URL tohttps://arpe-io-arpeio-mcp.hf.space/sse. - Click Add Server and verify the health check shows Connected.
Kiro IDE
Add the following to your Kiro MCP configuration file (.kiro/settings/mcp.json in your workspace):
{
"mcpServers": {
"arpeio": {
"url": "https://arpe-io-arpeio-mcp.hf.space/sse"
}
}
}
Le Chat (Mistral)
Available on all plans, including free.
- Go to Intelligence > Connectors.
- Click Add connector > Custom MCP Connector.
- Set the name to
Arpe.ioand the URL tohttps://arpe-io-arpeio-mcp.hf.space/sse. - Leave authentication disabled and click Create.
VS Code (GitHub Copilot)
Add the following to your VS Code MCP configuration. Run MCP: Open User Configuration from the Command Palette to open it.
- Linux:
~/.config/Code/User/mcp.json - macOS:
~/Library/Application Support/Code/User/mcp.json - Windows:
%APPDATA%\Code\User\mcp.json
{
"servers": {
"arpeio": {
"url": "https://arpe-io-arpeio-mcp.hf.space/sse",
"type": "sse"
}
}
}
Windsurf
Add the following to your Windsurf configuration file:
- Linux:
~/.codeium/windsurf/mcp_config.json - macOS:
~/.codeium/windsurf/mcp_config.json - Windows:
%USERPROFILE%\.codeium\windsurf\mcp_config.json
{
"mcpServers": {
"arpeio": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://arpe-io-arpeio-mcp.hf.space/sse"
]
}
}
}
Local Installation
For full execution support (not just command building), install locally:
pip install arpeio-mcp
Then configure your AI assistant to use the arpeio-mcp command (stdio transport) with optional binary paths — see the Claude Desktop local configuration for an example.
Environment Variables
| Variable | Description | Required |
|---|---|---|
FASTBCP_PATH |
Path to FastBCP binary | No |
FASTTRANSFER_PATH |
Path to FastTransfer binary | No |
LAKEXPRESS_PATH |
Path to LakeXpress binary | No |
MIGRATORXPRESS_PATH |
Path to MigratorXpress binary | No |
FASTBCP_DIR_PATH |
FastBCP directory for LakeXpress | No |
FASTTRANSFER_DIR_PATH |
FastTransfer directory for MigratorXpress | No |
*_TIMEOUT |
Per-tool execution timeout (seconds) | No |
*_LOG_DIR |
Per-tool log directory | No |
LOG_LEVEL |
Logging level (DEBUG/INFO/WARNING/ERROR) | No |
Available Tools (17)
Read-only advisory tools were consolidated into one *_info tool per product (with an action enum) and per-product release-notes tools were merged into a single arpe_release_notes. Auto-parallelism is now suggested inside preview so the typical workflow is 2 calls (preview → execute) instead of 4.
FastBCP (3 tools)
fastbcp_info— Read-only advisory:action="formats" | "parallelism" | "workflow" | "version"fastbcp_preview_export— Validate parameters and render the command (auto-suggests parallelism whenmethodis omitted)fastbcp_execute_export— Run the export
FastTransfer (3 tools)
fasttransfer_info— Read-only advisory:action="combinations" | "parallelism" | "workflow" | "version"fasttransfer_preview_transfer— Validate parameters and render the command (auto-suggests parallelism)fasttransfer_execute_transfer— Run the transfer
LakeXpress (3 tools)
lakexpress_info— Read-only advisory:action="capabilities" | "workflow" | "version"lakexpress_preview_command— Build any LakeXpress command (lxdb_*,config_*,sync,sync[export],sync[publish],run,status,cleanup). On v0.4.0+ binaries, warns when-a/--lxdb_auth_id/--sync_idare missing on sync-family callslakexpress_execute_command— Run the command
MigratorXpress (4 tools)
migratorxpress_info— Read-only advisory:action="capabilities" | "workflow" | "version"migratorxpress_validate_auth_file— Validate the JSON auth file (only file-I/O advisory tool kept separate)migratorxpress_preview_command— Build the migrate command. Accepts the newprojecttag (v0.6.30+); warns onmigration_db_type="postgres"against pre-0.6.32 binariesmigratorxpress_execute_command— Run the migration
Meta (4 tools)
arpe_get_status— Status of all four CLIs (installed / command-builder-only)arpe_quick_start— Detect the right tool from a plain-English use case and return a workflow guidearpe_release_notes— Return release-notes chunks for any product (product="fastbcp" | "fasttransfer" | "lakexpress" | "migratorxpress", optionalversion)search_docs— BM25 full-text search over arpe.io docs sites and blog
Structured output
The command-building, execution, and discovery tools return structured content
(outputSchema + structuredContent) alongside the human-readable markdown, so
MCP clients can chain calls programmatically instead of parsing prose:
*_preview_*→ the builtcommand(argv),command_string, maskedcommand_display,explanation, and versionwarnings. The exact command can be handed straight to the matching*_execute_*tool.*_execute_*→success,return_code,stdout,stderr, and parseddiagnostics.search_docs→ rankedresultsrecords;arpe_get_status→ per-product status;arpe_release_notes→ release-noteschunks.
Each payload carries a status field (ok / error) so success and error responses are both machine-checkable.
Prompts (5)
Conversation starters surfaced by clients that support MCP prompts (Claude Desktop, Cursor, etc.):
export-table, transfer-data, lakehouse-pipeline, migrate-database, troubleshoot.
Resources (4)
Static capability matrices served as MCP resources so clients can prefetch them without a tool call:
arpeio://capabilities/fastbcp-formats, fasttransfer-combinations, lakexpress-capabilities, migratorxpress-capabilities.
Evaluations
evaluations/arpeio_eval.xml holds 10 read-only, verifiable questions used to check
that an LLM can drive the server to correct answers (tool selection, parallelism
recommendations, capability lookups, version gating). A guard test re-derives every
answer from the capability registries so the answer key stays honest:
python -m pytest tests/test_evaluations.py -q
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arpeio_mcp-0.3.2.tar.gz.
File metadata
- Download URL: arpeio_mcp-0.3.2.tar.gz
- Upload date:
- Size: 148.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
428d3adbe51408843a083a9c27fcd1e76263f37c72d305539a881e24e02ec698
|
|
| MD5 |
4c7f306bb43e43ad9c24be0398925829
|
|
| BLAKE2b-256 |
6a619e4174265b1682ea6b22851f93270417af7a25ee8db1c719bc0db22c59f3
|
Provenance
The following attestation bundles were made for arpeio_mcp-0.3.2.tar.gz:
Publisher:
publish.yml on arpe-io/arpeio-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arpeio_mcp-0.3.2.tar.gz -
Subject digest:
428d3adbe51408843a083a9c27fcd1e76263f37c72d305539a881e24e02ec698 - Sigstore transparency entry: 1749247072
- Sigstore integration time:
-
Permalink:
arpe-io/arpeio-mcp@e9e5dcfb3bfb2da41b8bedd1aacce2f7f7dbaf38 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/arpe-io
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e9e5dcfb3bfb2da41b8bedd1aacce2f7f7dbaf38 -
Trigger Event:
release
-
Statement type:
File details
Details for the file arpeio_mcp-0.3.2-py3-none-any.whl.
File metadata
- Download URL: arpeio_mcp-0.3.2-py3-none-any.whl
- Upload date:
- Size: 113.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a5062e0a9ba4600a7499732a00948c34f29f80b5bfd1560b0348e87e7e5f854
|
|
| MD5 |
503b7234f4f8231e5576040d78282fa2
|
|
| BLAKE2b-256 |
1661b57684567b62c19216582b4be52eb3dba616481cc8ff28d2e0313a7f3ed9
|
Provenance
The following attestation bundles were made for arpeio_mcp-0.3.2-py3-none-any.whl:
Publisher:
publish.yml on arpe-io/arpeio-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arpeio_mcp-0.3.2-py3-none-any.whl -
Subject digest:
9a5062e0a9ba4600a7499732a00948c34f29f80b5bfd1560b0348e87e7e5f854 - Sigstore transparency entry: 1749247271
- Sigstore integration time:
-
Permalink:
arpe-io/arpeio-mcp@e9e5dcfb3bfb2da41b8bedd1aacce2f7f7dbaf38 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/arpe-io
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e9e5dcfb3bfb2da41b8bedd1aacce2f7f7dbaf38 -
Trigger Event:
release
-
Statement type: