ftp-mcp
An enterprise-grade MCP server for FTP and SFTP operations optimized for AI coding assistants, featuring smart synchronization, connection pooling, and unified diff patching.
README
ftp-mcp
An enterprise-grade Model Context Protocol (MCP) server providing sophisticated FTP and SFTP operations optimized specifically for AI coding assistants. Features smart synchronization, connection pooling, directory caching, unified diff patching, and comprehensive security controls.
Why this exists
Your AI can:
- spin up a VPS
- install a web server
- build your entire app
…and then gets stuck trying to upload files.
So it writes a Python script.
Then forgets it exists.
Then writes it again next session.
This fixes that.
One connection. One call. Done.
Built for AI to install. Designed for AI to use.
Features
- Connection Pooling & Caching: Sustains underlying connections across tool calls and leverages strict memory caching with smart aggressive invalidation for extreme sub-15ms performance.
- AI-Optimized Tooling: Implements chunking (
startLine/endLine) for huge files, cursor-paginatedlimitbounds for vast directories, anddiff-based local file morphing native to FTP without pulling heavy files. - Security & Authorization: Native support for SSH Key exchanges (both direct and Agent-forwarding), Pass-phrase authentication, and explicit
readOnly: trueconfig profiling to sandbox dangerous modifications. - Smart Directory Syncing: Deep hash-and-size sync algorithms for minimal network payload deployments, complete with
--dryRuntoggling that logs differences back to the LLM without modifying live directories. - Git & Node Aware: Automatically unpacks
.gitignoreand.ftpignoreenvironments. Semantically evaluatespackage.jsonfor smart context summarization. - AI-Guided Initialization: A dedicated "AI-First" configuration track (
--init) that provides highly verbose instruction context during setup, ensuring AI assistants absorb server capabilities and operational constraints directly into their working memory. - Interactive Initializer: Simple scaffolding of configurations natively via the CLI for human users.
- Audit Logging: Robust instrumentation generating structured
.ftp-mcp-audit.logtraces on all filesystem mutations. - Comprehensive E2E Testing: Guaranteed operational functionality validated continuously by Node-based MCP IO test orchestration.
Quick Start
1. Install & Initialize
Run this in your target project directory to scaffold the configuration securely:
npx ftp-mcp --init
This will run an interactive initialization wizard dropping a .ftpconfig instance natively into your working directory. Then install the package globally so your MCP client can access it universally:
npm install -g ftp-mcp
2. Configure Credentials
Option A: Project Config File (Recommended)
Your .ftpconfig can hold dozens of isolated environments.
{
"production": {
"host": "ftp.example.com",
"user": "prod-user",
"password": "your-password",
"port": 21,
"secure": false,
"readOnly": true
},
"staging": {
"host": "sftp://staging.example.com",
"user": "staging-user",
"privateKey": "./keys/id_rsa",
"passphrase": "my-secure-key",
"port": 22
},
"default": {
"host": "ftp.mysite.com",
"user": "default-user",
"password": "your-password"
}
}
The server automatically identifies .ftpconfig relative to your execution layer and falls back to environment properties.
Option B: Environment Variables
Required:
# Windows
setx FTPMCP_HOST "ftp.example.com"
setx FTPMCP_USER "username"
setx FTPMCP_PASSWORD "password"
# Linux/Mac
export FTPMCP_HOST="ftp.example.com"
export FTPMCP_USER="username"
export FTPMCP_PASSWORD="password"
Advanced SFTP Keys:
export FTPMCP_PRIVATE_KEY="/path/to/id_rsa"
export FTPMCP_PASSPHRASE="optional-phrase"
export FTPMCP_AGENT="pageant"
3. Client Integration
Register the MCP server directly to your AI Code Editor (Cursor, Cline, Claude Desktop, Windsurf, etc.).
Example integration:
- Command:
npx - Arguments:
-y ftp-mcp
Advanced AI Operations
Memory Auto-Chunking
When navigating large remote codebases, AI assistants conventionally hit token-overflow limits. ftp_get_contents supports startLine and endLine parameters. ftp-mcp intercepts the inbound download stream at the bytecode layer and cleanly drops data outside your strict index bounds, returning only the exact lines requested without destroying context.
Unified Diff Patching
Instead of requesting a 5,000-line remote file, making a 2-line edit locally, and pushing the huge file back, ftp-mcp exposes an ftp_patch_file command. Simply provide a standard Unified Diff patch string, and ftp-mcp will read the live destination, map diff logic, and commit the modification directly over SCP.
Semantic Workspace Analysis
Calling ftp_analyze_workspace will traverse the remote filesystem natively investigating configurations (package.json, composer.json). It will evaluate structure patterns and package dependencies, instantly reporting exact context of the remote language mapping (e.g. "Node.js Environment operating React mapping to Express").
Native MCP Prompts
The server provides built-in prompts that guide AI agents through complex workflows:
audit-project: Instructs the agent on how to perform a deep security and architectural audit of a remote codebase.deploy-checklist: Provides a standard safety checklist for agents to verify before performing production deployments or massive synchronizations.
Resource Templates (Remote File Access)
Access remote files as standard MCP resources without explicitly calling a tool:
- URI Template:
mcp://remote-file/{path} - Supports direct UTF-8 reading and respects all
PolicyEnginesecurity boundaries and path-traversal guards.
Operational Transparency
- Real-time Logging: Emits protocol-native logging notifications for internal events like connection pooling, cache reuse, and transfer lifecycle steps.
- Progress Tracking: Long-running operations (
ftp_sync,ftp_batch_upload, etc.) emit granular progress updates (0-100%) so the AI agent and user can monitor large transfers in real-time.
Strict Safe-Mode Execution
Set "readOnly": true in any .ftpconfig profile. AI interactions over ftp_delete, ftp_patch_file, ftp_put_contents, or ftp_sync(direction: "upload") will immediately halt with a standardized sandbox violation, keeping production environments entirely safe from hallucinated tool executions.
Smart Sync Generation
Deploy environments utilizing deep comparison trees via ftp_sync.
- Use
dryRun: trueto have the system safely evaluate the entire sync matrix, printing standard output natively to the context console reporting exactly what logic would have executed. ftp_syncdeeply integrates with standard.gitignoreindexing and custom.ftpignorepattern files perfectly out-of-the-box.
Complete Tool Reference
Connection Management
ftp_connect: Switch between named FTP profiles.
File Content Operations
ftp_get_contents: Read file content directly from the server utilizing paginated line extraction.ftp_put_contents: Write content directly to a remote file.ftp_patch_file: Apply unified diff modifications cleanly over the network.ftp_summarize_file: Generates token-light structural signatures representing the files contents natively.
Metadata & File Information
ftp_stat: Get detailed metadata regarding permissions, bytes, and modification arrays.ftp_exists: Conditional logic pipeline for execution paths without traversing subdirectories.ftp_disk_space: System OS level free-byte parsing (SFTP ONLY).ftp_analyze_workspace: Pull complex semantic environments based on workspace root configuration definitions.
Directory Operations
ftp_list: List all files/directories subject tolimitandoffsettoken bounding rules.ftp_tree: Build full recursive maps.ftp_search: Target files by wildcard properties instantly down the document tree.ftp_mkdir/ftp_rmdir: Folder creation and complex recursive destruction commands.
File Transfer
ftp_upload/ftp_download: Strict file 1-to-1 transports.ftp_batch_upload/ftp_batch_download: Multi-mapped array uploads avoiding multi-tool overhead.ftp_sync: Advanced deep-logic size-tree mappings dropping into deployment synchronization pools.
File Management
ftp_delete: Drop target properties.ftp_copy: OS level SSH file duplications ignoring massive TCP IO transport arrays.ftp_rename: Target displacement mappings.ftp_chmod: OS level Permission flags executing bit-mask rules natively on SFTP sockets.
Architecture Guidelines
- Audit Logging is continuously enabled. Ensure the terminal running the MCP protocol maintains structural write-permissions to the local project deployment folder.
- Ensure any
currentConfigcaching resets are tied exclusively toftp_connectprofile pivoting.
Changelog
See CHANGELOG.md for a detailed list of changes in each release.
License
Author: Kynlo Akari
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.