Price Per TokenPrice Per Token

FTP Access Server

by alxspiker

0

About

FTP Access Server connects AI assistants to FTP servers for remote file management operations. It provides a natural language interface for browsing, transferring, and organizing files on standard FTP servers. Key capabilities: - List directory contents to browse files and folders on remote servers - Download files from FTP servers to your local environment - Upload files to create new or update existing files on remote servers - Create directories to organize your FTP server structure - Delete files and directories to manage server storage

README

[](https://mseep.ai/app/alxspiker-mcp-server-ftp)

MCP Server for FTP Access

[](https://smithery.ai/server/@alxspiker/mcp-server-ftp)

This Model Context Protocol (MCP) server provides tools for interacting with FTP servers. It allows Claude.app to list directories, download and upload files, create directories, and delete files/directories on FTP servers.

Features

  • List Directory Contents: View files and folders on the FTP server
  • Download Files: Retrieve file content from the FTP server
  • Upload Files: Create new files or update existing ones
  • Create Directories: Make new folders on the FTP server
  • Delete Files/Directories: Remove files or directories
  • Installation

    Installing via Smithery

    To install mcp-server-ftp for Claude Desktop automatically via Smithery:

    npx -y @smithery/cli install @alxspiker/mcp-server-ftp --client claude
    

    Prerequisites

  • Node.js 16 or higher
  • Claude for Desktop (or other MCP-compatible client)
  • Building from Source

    #### Linux/macOS

    # Clone the repository
    git clone https://github.com/alxspiker/mcp-server-ftp.git
    cd mcp-server-ftp

    Install dependencies

    npm install

    Build the project

    npm run build

    #### Windows

    # Clone the repository
    git clone https://github.com/alxspiker/mcp-server-ftp.git
    cd mcp-server-ftp

    Run the Windows build helper script

    build-windows.bat

    The build-windows.bat script handles dependency installation and building on Windows systems, with fallback options if the TypeScript compiler has issues.

    Configuration

    To use this server with Claude for Desktop, add it to your configuration file:

    MacOS/Linux

    Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

    {
      "mcpServers": {
        "ftp-server": {
          "command": "node",
          "args": ["/absolute/path/to/mcp-server-ftp/build/index.js"],
          "env": {
            "FTP_HOST": "ftp.example.com",
            "FTP_PORT": "21",
            "FTP_USER": "your-username",
            "FTP_PASSWORD": "your-password",
            "FTP_SECURE": "false"
          }
        }
      }
    }
    

    Windows

    Edit %APPDATA%\Claude\claude_desktop_config.json:

    {
      "mcpServers": {
        "ftp-server": {
          "command": "node",
          "args": ["C:\\path\\to\\mcp-server-ftp\\build\\index.js"],
          "env": {
            "FTP_HOST": "ftp.example.com",
            "FTP_PORT": "21",
            "FTP_USER": "your-username",
            "FTP_PASSWORD": "your-password",
            "FTP_SECURE": "false"
          }
        }
      }
    }
    

    Troubleshooting Windows Build Issues

    If you encounter build issues on Windows:

    1. Use the provided build-windows.bat script which handles common build issues 2. Make sure Node.js and npm are properly installed 3. Try running the TypeScript compiler directly: npx tsc 4. If you still have issues, you can use the pre-compiled files in the build directory by running:

       node path\to\mcp-server-ftp\build\index.js
       

    Configuration Options

    | Environment Variable | Description | Default | |---------------------|-------------|---------| | FTP_HOST | FTP server hostname or IP address | localhost | | FTP_PORT | FTP server port | 21 | | FTP_USER | FTP username | anonymous | | FTP_PASSWORD | FTP password | (empty string) | | FTP_SECURE | Use secure FTP (FTPS) | false |

    Usage

    After configuring and restarting Claude for Desktop, you can use natural language to perform FTP operations:

  • "List the files in the /public directory on my FTP server"
  • "Download the file /data/report.txt from the FTP server"
  • "Upload this text as a file called notes.txt to the FTP server"
  • "Create a new directory called 'backups' on the FTP server"
  • "Delete the file obsolete.txt from the FTP server"
  • "Remove the empty directory /old-project from the FTP server"
  • Available Tools

    | Tool Name | Description | |-----------|-------------| | list-directory | List contents of an FTP directory | | download-file | Download a file from the FTP server | | upload-file | Upload a file to the FTP server | | create-directory | Create a new directory on the FTP server | | delete-file | Delete a file from the FTP server | | delete-directory | Delete a directory from the FTP server |

    Security Considerations

  • FTP credentials are stored in the Claude configuration file. Ensure this file has appropriate permissions.
  • Consider using FTPS (secure FTP) by setting FTP_SECURE=true if your server supports it.
  • The server creates temporary files for uploads and downloads in your system's temp directory.
  • License

    MIT

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81