Server data from the Official MCP Registry
Arpe.io MCP server for FastBCP, FastTransfer, LakeXpress, MigratorXpress
Arpe.io MCP server for FastBCP, FastTransfer, LakeXpress, MigratorXpress
Valid MCP server (1 strong, 1 medium validity signals). 4 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
3 files analyzed ยท 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: FASTBCP_PATH
Environment variable: FASTTRANSFER_PATH
Environment variable: LAKEXPRESS_PATH
Environment variable: MIGRATORXPRESS_PATH
Environment variable: LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-arpe-io-arpeio-mcp": {
"env": {
"LOG_LEVEL": "your-log-level-here",
"FASTBCP_PATH": "your-fastbcp-path-here",
"LAKEXPRESS_PATH": "your-lakexpress-path-here",
"FASTTRANSFER_PATH": "your-fasttransfer-path-here",
"MIGRATORXPRESS_PATH": "your-migratorxpress-path-here"
},
"args": [
"arpeio-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
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.
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
Available for paid plans only (Plus, Pro, Team, and Enterprise).
https://arpe-io-arpeio-mcp.hf.space/sse and save.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
Add the following to your Claude Desktop configuration file:
~/.config/Claude/claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"arpeio": {
"command": "npx",
"args": [
"mcp-remote",
"https://arpe-io-arpeio-mcp.hf.space/sse"
]
}
}
}
{
"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"
}
}
}
}
{
"mcpServers": {
"arpeio": {
"url": "https://arpe-io-arpeio-mcp.hf.space/sse"
}
}
}
Add the following to your ~/.gemini/settings.json file:
{
"mcpServers": {
"arpeio": {
"uri": "https://arpe-io-arpeio-mcp.hf.space/sse"
}
}
}
Arpe.io and the Server URL to https://arpe-io-arpeio-mcp.hf.space/sse.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"
}
}
}
Available on all plans, including free.
Arpe.io and the URL to https://arpe-io-arpeio-mcp.hf.space/sse.Add the following to your VS Code MCP configuration. Run MCP: Open User Configuration from the Command Palette to open it.
~/.config/Code/User/mcp.json~/Library/Application Support/Code/User/mcp.json%APPDATA%\Code\User\mcp.json{
"servers": {
"arpeio": {
"url": "https://arpe-io-arpeio-mcp.hf.space/sse",
"type": "sse"
}
}
}
Add the following to your Windsurf configuration file:
~/.codeium/windsurf/mcp_config.json~/.codeium/windsurf/mcp_config.json%USERPROFILE%\.codeium\windsurf\mcp_config.json{
"mcpServers": {
"arpeio": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://arpe-io-arpeio-mcp.hf.space/sse"
]
}
}
}
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.
| 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 |
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 (optional version filter)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 versionlakexpress_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 versionmigratorxpress_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 versionarpe_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 searchMIT
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace ยท Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm โ conversationally
by mcp-marketplace ยท Finance
Free stock data and market news for any MCP-compatible AI assistant.