io.github.arpe-io/arpeio-mcp
Arpe.io MCP server for FastBCP, FastTransfer, LakeXpress, MigratorXpress
Ask AI about io.github.arpe-io/arpeio-mcp
Powered by Claude Β· Grounded in docs
I know everything about io.github.arpe-io/arpeio-mcp. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
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 (32)
FastBCP (8 tools)
fastbcp_list_formatsβ List supported databases, formats, and storage targetsfastbcp_suggest_parallelismβ Recommend parallelism method for your tablefastbcp_suggest_workflowβ Step-by-step export workflow with DB-specific tipsfastbcp_validate_connectionβ Validate source connection parametersfastbcp_preview_exportβ Build and preview export commandfastbcp_execute_exportβ Execute exportfastbcp_get_versionβ Report version and capabilitiesfastbcp_release_notesβ Return release-notes text for a FastBCP version (optionalversionfilter)
FastTransfer (8 tools)
fasttransfer_list_combinationsβ List supported source-to-target database pairsfasttransfer_suggest_parallelismβ Recommend parallelism method for your tablefasttransfer_suggest_workflowβ Step-by-step transfer workflow with tipsfasttransfer_validate_connectionβ Validate connection parametersfasttransfer_preview_transferβ Build and preview transfer commandfasttransfer_execute_transferβ Execute transferfasttransfer_get_versionβ Report version and capabilitiesfasttransfer_release_notesβ Return release-notes text for a FastTransfer version
LakeXpress (6 tools)
lakexpress_list_capabilitiesβ List supported databases, backends, and targetslakexpress_suggest_workflowβ Recommend full command sequencelakexpress_preview_commandβ Build and preview any LakeXpress commandlakexpress_execute_commandβ Execute commandlakexpress_get_versionβ Report version and capabilitieslakexpress_release_notesβ Return release-notes text for a LakeXpress version
MigratorXpress (7 tools)
migratorxpress_list_capabilitiesβ List databases, tasks, and modesmigratorxpress_suggest_workflowβ Recommend migration task sequencemigratorxpress_validate_auth_fileβ Validate auth JSON filemigratorxpress_preview_commandβ Build and preview migration commandmigratorxpress_execute_commandβ Execute migrationmigratorxpress_get_versionβ Report version and capabilitiesmigratorxpress_release_notesβ Return release-notes text for a MigratorXpress version
Meta (3 tools)
arpe_get_statusβ Status of all tools (installed/command-builder-only)arpe_quick_startβ Detect the right tool from a use case description and get a workflow guidesearch_docsβ Search arpe.io documentation and blog with BM25 full-text search
License
MIT
