fastmcp-file-server


Namefastmcp-file-server JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummarySecure MCP file server with multi-tier authentication
upload_time2025-08-17 21:25:10
maintainerNone
docs_urlNone
authorFastMCP File Server Contributors
requires_python>=3.10
licenseMIT
keywords ai-assistant authentication claude-desktop fastmcp file-operations file-server mcp model-context-protocol secure-server
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# FastMCP File Server

[![PyPI version](https://badge.fury.io/py/fastmcp-file-server.svg)](https://badge.fury.io/py/fastmcp-file-server)
[![Python](https://img.shields.io/pypi/pyversions/fastmcp-file-server.svg)](https://pypi.org/project/fastmcp-file-server/)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Downloads](https://pepy.tech/badge/fastmcp-file-server)](https://pepy.tech/project/fastmcp-file-server)

</div>

A versatile, secure file server implementing the Model Context Protocol (MCP) that provides AI assistants with safe file operations. Features multiple connection modes, configurable access levels, and comprehensive security controls for various deployment scenarios.

## 🚀 Features

- **Comprehensive File Operations**: Create, read, write, delete, copy, move, rename files and directories
- **Advanced Text Manipulation**: Line-specific operations, search and replace, pattern matching
- **File Analysis**: Size, permissions, timestamps, hash verification, diff generation
- **Batch Operations**: Handle multiple files efficiently in single operations
- **Archive Support**: Create and extract ZIP files
- **Format Conversion**: Text to PDF, image format conversion, CSV ↔ JSON
- **Multiple Connection Modes**: stdio, HTTP, and public access via ngrok
- **Tiered Access Control**: Read-only, Read/Write, and Admin permission levels
- **Security First**: All operations restricted to configured safe directories

## 📦 Installation

### From PyPI (Recommended)

```bash
# Using uv (recommended)
uv tool install fastmcp-file-server

# Using pip
pip install fastmcp-file-server
```

### From Source

```bash
git clone https://github.com/Luxshan2000/Local-File-MCP-Server.git
cd Local-File-MCP-Server
uv sync
```

## 🔧 Quick Start

### Basic Usage

```bash
# Set allowed directory
export MCP_ALLOWED_PATH="/path/to/your/files"

# Start stdio server (for Claude Desktop)
fastmcp-file-server

# Start HTTP server
fastmcp-file-server-http

# Start HTTP server bypassing security warning (not recommended)
fastmcp-file-server-http --ignore-keys
```

### With Authentication

```bash
# Set admin key for HTTP mode
export MCP_ADMIN_KEY="your-secret-token"
export MCP_HTTP_PORT=8082
fastmcp-file-server-http
```

## ⚙️ Configuration

### Environment Variables

| Variable | Default | Description |
|----------|---------|-------------|
| `MCP_ALLOWED_PATH` | `./allowed` | Directory path for file operations |
| `MCP_HTTP_PORT` | `8082` | HTTP server port |
| `MCP_READ_KEY` | `None` | Read-only access token |
| `MCP_WRITE_KEY` | `None` | Read/write access token |
| `MCP_ADMIN_KEY` | `None` | Admin access token (includes delete) |
| `MCP_MAX_FILE_SIZE` | `10485760` | Maximum file size in bytes (10MB) |
| `MCP_ALLOWED_EXTENSIONS` | `.txt,.json,.md,...` | Allowed file extensions (comma-separated) |

### Configuration Files

Create a `.env` file in your project root:

```bash
# Required: Safe directory for file operations
MCP_ALLOWED_PATH=/absolute/path/to/your/files

# Optional: HTTP server settings
MCP_HTTP_PORT=8082

# Optional: Multi-tier authentication tokens
MCP_READ_KEY=readonly-token-here
MCP_WRITE_KEY=readwrite-token-here  
MCP_ADMIN_KEY=admin-token-here

# Optional: File restrictions
MCP_MAX_FILE_SIZE=10485760
MCP_ALLOWED_EXTENSIONS=.txt,.json,.md,.csv,.log,.xml,.yaml,.yml,.conf,.cfg,.zip,.pdf,.jpg,.png
```

## 🔗 Integration

### Claude Desktop Integration

**Configuration file locations:**
- **macOS**: `~/Library/Application Support/Claude/config.json`
- **Windows**: `%APPDATA%\Claude\config.json`

#### Stdio Mode (Direct Integration)

```json
{
  "mcpServers": {
    "local-file-server": {
      "command": "fastmcp-file-server",
      "env": {
        "MCP_ALLOWED_PATH": "/absolute/path/to/your/allowed/directory"
      }
    }
  }
}
```

#### HTTP Mode (Local Server)

1. Start the HTTP server:
```bash
export MCP_ADMIN_KEY="your-secret-token"
fastmcp-file-server-http
```

2. Configure Claude Desktop:
```json
{
  "mcpServers": {
    "local-file-server-http": {
      "transport": "http",
      "url": "http://127.0.0.1:8082/mcp",
      "headers": {
        "Authorization": "Bearer your-secret-token"
      }
    }
  }
}
```

#### HTTP Mode with mcp-remote Proxy

For environments requiring a proxy:

```bash
# Install mcp-remote
npm install -g mcp-remote
```

```json
{
  "mcpServers": {
    "local-file-server-proxy": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://127.0.0.1:8082/mcp",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer your-secret-token"
      }
    }
  }
}
```

### Public Access with ngrok

For web-based AI systems (ChatGPT, etc.):

```bash
# Terminal 1: Start authenticated HTTP server
export MCP_ADMIN_KEY="your-secret-token"
export MCP_HTTP_PORT=8082
fastmcp-file-server-http

# Terminal 2: Expose publicly via ngrok
ngrok http 8082
```

Use the ngrok URL in your web-based AI system:
- **URL**: `https://abc123.ngrok.io/mcp`
- **Header**: `Authorization: Bearer your-secret-token`

## 🔒 Security

### Security Features

**⚠️ HTTP Mode Security Warning:**

When starting the HTTP server without any authentication tokens configured, the system will display a security warning and prompt for confirmation. This prevents accidentally running an unprotected server.

```bash
# This will trigger a security warning:
fastmcp-file-server-http

# To bypass the warning (not recommended):
fastmcp-file-server-http --ignore-keys
```

### Token Management

**⚠️ Important Security Notes:**

- **With Keys**: When ANY token is set (`MCP_READ_KEY`, `MCP_WRITE_KEY`, or `MCP_ADMIN_KEY`), all HTTP requests require the `Authorization: Bearer <token>` header
- **Without Keys**: If NO tokens are set, the server runs without authentication (use only in secure environments)
- **Multi-tier Access**: Different tokens provide different permission levels
- **Temporary Exposure**: For ngrok or temporary remote access, always use strong tokens and revoke access when done
- **Key Rotation**: Regularly rotate your tokens, especially after temporary exposures

### Access Levels

- **No Tokens Set**: Server runs without authentication (stdio mode safe, HTTP local only)
- **Read Token**: `MCP_READ_KEY` - File listing, reading, searching, comparison operations
- **Write Token**: `MCP_WRITE_KEY` - All read operations plus create, modify, copy, move, convert
- **Admin Token**: `MCP_ADMIN_KEY` - All operations including file and directory deletion

### Best Practices

1. **Never commit secrets**: Use `.env` files (added to `.gitignore`)
2. **Use strong tokens**: Generate cryptographically secure random tokens (`openssl rand -hex 32`)
3. **Limit access scope**: Set `MCP_ALLOWED_PATH` to the minimum required directory
4. **Choose appropriate token level**: Use read-only tokens for analysis, admin only when deletion needed
5. **Monitor usage**: Check logs for unauthorized access attempts
6. **Temporary access**: Unset all tokens and restart after temporary exposures

## 💡 Usage Examples

### File Operations
```
# Basic operations
"Create a file called notes.txt with my meeting notes"
"Read lines 10-20 from config.py"
"Copy config.json to backup/config_backup.json"

# Advanced operations
"Search for 'TODO' comments in all Python files"
"Replace 'old_function' with 'new_function' in utils.py"
"Create a ZIP archive of all source files"
"Convert report.txt to PDF format"
"Calculate SHA256 hash of important_file.pdf"
```

### Batch Operations
```
"Read all .py files in the src/ directory"
"Create these 5 configuration files with their content"
"Delete all .tmp files in the workspace"
"Find all JavaScript files containing 'console.log'"
```

## 🛠️ Development

See [DEVELOPER.md](DEVELOPER.md) for detailed development setup and contribution guidelines.

### Quick Development Setup

```bash
# Clone repository
git clone https://github.com/Luxshan2000/Local-File-MCP-Server.git
cd Local-File-MCP-Server

# Install dependencies
uv sync

# Run development server
uv run server          # stdio mode
uv run server-http     # HTTP mode

# Run tests and linting
uv run test
uv run lint
uv run format
```

## 📊 API Reference

### Available Tools

| Tool | Description | Access Level |
|------|-------------|--------------|
| `read_file` | Read file contents or specific line ranges | Read-only |
| `write_file` | Create or overwrite files | Read/Write |
| `append_file` | Append content to existing files | Read/Write |
| `delete_file` | Remove files and directories | Admin |
| `copy_file` | Copy files and directories | Read/Write |
| `move_file` | Move/rename files and directories | Read/Write |
| `list_directory` | List directory contents with filtering | Read-only |
| `create_directory` | Create new directories | Read/Write |
| `get_file_info` | Get file metadata and permissions | Read-only |
| `search_files` | Search for files by name patterns | Read-only |
| `search_content` | Search file contents with regex | Read-only |
| `replace_content` | Find and replace text in files | Read/Write |
| `insert_lines` | Insert text at specific line numbers | Read/Write |
| `delete_lines` | Remove specific line ranges | Read/Write |
| `compare_files` | Generate diffs between files | Read-only |
| `create_archive` | Create ZIP archives | Read/Write |
| `extract_archive` | Extract ZIP archives | Read/Write |
| `calculate_hash` | Generate file hashes (MD5, SHA1, SHA256) | Read-only |
| `convert_document` | Convert text to PDF | Read/Write |
| `convert_image` | Convert between image formats | Read/Write |
| `convert_data` | Convert between CSV and JSON | Read/Write |

## 🐛 Troubleshooting

### Common Issues

**Server won't start:**
```bash
# Reinstall dependencies
uv sync

# Check Python version
python --version  # Requires Python 3.10+
```

**Claude Desktop not connecting:**
1. Verify all paths in configuration are absolute (full paths)
2. Restart Claude Desktop after changing configuration
3. Check server starts without errors: `uv run server`
4. Ensure `MCP_ALLOWED_PATH` directory exists and is accessible

**HTTP authentication fails:**
1. Verify `MCP_ADMIN_KEY` is set before starting server
2. Check Authorization header format: `Bearer your-secret-token`
3. Ensure token matches exactly (no extra spaces)

**Permission denied errors:**
1. Check file/directory permissions
2. Verify `MCP_ALLOWED_PATH` is accessible
3. Ensure user has read/write permissions in the allowed directory

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🤝 Contributing

We welcome contributions! Please see [DEVELOPER.md](DEVELOPER.md) for development setup and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for community guidelines.

## 🔗 Links

- **Repository**: https://github.com/Luxshan2000/Local-File-MCP-Server
- **PyPI Package**: https://pypi.org/project/fastmcp-file-server/
- **Issues**: https://github.com/Luxshan2000/Local-File-MCP-Server/issues
- **Model Context Protocol**: https://modelcontextprotocol.io/

## ⭐ Support

If you find this project useful, please consider giving it a star on GitHub!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "fastmcp-file-server",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "ai-assistant, authentication, claude-desktop, fastmcp, file-operations, file-server, mcp, model-context-protocol, secure-server",
    "author": "FastMCP File Server Contributors",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/b0/28/f56c15a4fb9b41c7efc207cb0b945eb5d69a6bd5a2267b7f85d5371e6622/fastmcp_file_server-0.1.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# FastMCP File Server\n\n[![PyPI version](https://badge.fury.io/py/fastmcp-file-server.svg)](https://badge.fury.io/py/fastmcp-file-server)\n[![Python](https://img.shields.io/pypi/pyversions/fastmcp-file-server.svg)](https://pypi.org/project/fastmcp-file-server/)\n[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Downloads](https://pepy.tech/badge/fastmcp-file-server)](https://pepy.tech/project/fastmcp-file-server)\n\n</div>\n\nA versatile, secure file server implementing the Model Context Protocol (MCP) that provides AI assistants with safe file operations. Features multiple connection modes, configurable access levels, and comprehensive security controls for various deployment scenarios.\n\n## \ud83d\ude80 Features\n\n- **Comprehensive File Operations**: Create, read, write, delete, copy, move, rename files and directories\n- **Advanced Text Manipulation**: Line-specific operations, search and replace, pattern matching\n- **File Analysis**: Size, permissions, timestamps, hash verification, diff generation\n- **Batch Operations**: Handle multiple files efficiently in single operations\n- **Archive Support**: Create and extract ZIP files\n- **Format Conversion**: Text to PDF, image format conversion, CSV \u2194 JSON\n- **Multiple Connection Modes**: stdio, HTTP, and public access via ngrok\n- **Tiered Access Control**: Read-only, Read/Write, and Admin permission levels\n- **Security First**: All operations restricted to configured safe directories\n\n## \ud83d\udce6 Installation\n\n### From PyPI (Recommended)\n\n```bash\n# Using uv (recommended)\nuv tool install fastmcp-file-server\n\n# Using pip\npip install fastmcp-file-server\n```\n\n### From Source\n\n```bash\ngit clone https://github.com/Luxshan2000/Local-File-MCP-Server.git\ncd Local-File-MCP-Server\nuv sync\n```\n\n## \ud83d\udd27 Quick Start\n\n### Basic Usage\n\n```bash\n# Set allowed directory\nexport MCP_ALLOWED_PATH=\"/path/to/your/files\"\n\n# Start stdio server (for Claude Desktop)\nfastmcp-file-server\n\n# Start HTTP server\nfastmcp-file-server-http\n\n# Start HTTP server bypassing security warning (not recommended)\nfastmcp-file-server-http --ignore-keys\n```\n\n### With Authentication\n\n```bash\n# Set admin key for HTTP mode\nexport MCP_ADMIN_KEY=\"your-secret-token\"\nexport MCP_HTTP_PORT=8082\nfastmcp-file-server-http\n```\n\n## \u2699\ufe0f Configuration\n\n### Environment Variables\n\n| Variable | Default | Description |\n|----------|---------|-------------|\n| `MCP_ALLOWED_PATH` | `./allowed` | Directory path for file operations |\n| `MCP_HTTP_PORT` | `8082` | HTTP server port |\n| `MCP_READ_KEY` | `None` | Read-only access token |\n| `MCP_WRITE_KEY` | `None` | Read/write access token |\n| `MCP_ADMIN_KEY` | `None` | Admin access token (includes delete) |\n| `MCP_MAX_FILE_SIZE` | `10485760` | Maximum file size in bytes (10MB) |\n| `MCP_ALLOWED_EXTENSIONS` | `.txt,.json,.md,...` | Allowed file extensions (comma-separated) |\n\n### Configuration Files\n\nCreate a `.env` file in your project root:\n\n```bash\n# Required: Safe directory for file operations\nMCP_ALLOWED_PATH=/absolute/path/to/your/files\n\n# Optional: HTTP server settings\nMCP_HTTP_PORT=8082\n\n# Optional: Multi-tier authentication tokens\nMCP_READ_KEY=readonly-token-here\nMCP_WRITE_KEY=readwrite-token-here  \nMCP_ADMIN_KEY=admin-token-here\n\n# Optional: File restrictions\nMCP_MAX_FILE_SIZE=10485760\nMCP_ALLOWED_EXTENSIONS=.txt,.json,.md,.csv,.log,.xml,.yaml,.yml,.conf,.cfg,.zip,.pdf,.jpg,.png\n```\n\n## \ud83d\udd17 Integration\n\n### Claude Desktop Integration\n\n**Configuration file locations:**\n- **macOS**: `~/Library/Application Support/Claude/config.json`\n- **Windows**: `%APPDATA%\\Claude\\config.json`\n\n#### Stdio Mode (Direct Integration)\n\n```json\n{\n  \"mcpServers\": {\n    \"local-file-server\": {\n      \"command\": \"fastmcp-file-server\",\n      \"env\": {\n        \"MCP_ALLOWED_PATH\": \"/absolute/path/to/your/allowed/directory\"\n      }\n    }\n  }\n}\n```\n\n#### HTTP Mode (Local Server)\n\n1. Start the HTTP server:\n```bash\nexport MCP_ADMIN_KEY=\"your-secret-token\"\nfastmcp-file-server-http\n```\n\n2. Configure Claude Desktop:\n```json\n{\n  \"mcpServers\": {\n    \"local-file-server-http\": {\n      \"transport\": \"http\",\n      \"url\": \"http://127.0.0.1:8082/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer your-secret-token\"\n      }\n    }\n  }\n}\n```\n\n#### HTTP Mode with mcp-remote Proxy\n\nFor environments requiring a proxy:\n\n```bash\n# Install mcp-remote\nnpm install -g mcp-remote\n```\n\n```json\n{\n  \"mcpServers\": {\n    \"local-file-server-proxy\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"mcp-remote\",\n        \"http://127.0.0.1:8082/mcp\",\n        \"--header\",\n        \"Authorization:${AUTH_HEADER}\"\n      ],\n      \"env\": {\n        \"AUTH_HEADER\": \"Bearer your-secret-token\"\n      }\n    }\n  }\n}\n```\n\n### Public Access with ngrok\n\nFor web-based AI systems (ChatGPT, etc.):\n\n```bash\n# Terminal 1: Start authenticated HTTP server\nexport MCP_ADMIN_KEY=\"your-secret-token\"\nexport MCP_HTTP_PORT=8082\nfastmcp-file-server-http\n\n# Terminal 2: Expose publicly via ngrok\nngrok http 8082\n```\n\nUse the ngrok URL in your web-based AI system:\n- **URL**: `https://abc123.ngrok.io/mcp`\n- **Header**: `Authorization: Bearer your-secret-token`\n\n## \ud83d\udd12 Security\n\n### Security Features\n\n**\u26a0\ufe0f HTTP Mode Security Warning:**\n\nWhen starting the HTTP server without any authentication tokens configured, the system will display a security warning and prompt for confirmation. This prevents accidentally running an unprotected server.\n\n```bash\n# This will trigger a security warning:\nfastmcp-file-server-http\n\n# To bypass the warning (not recommended):\nfastmcp-file-server-http --ignore-keys\n```\n\n### Token Management\n\n**\u26a0\ufe0f Important Security Notes:**\n\n- **With Keys**: When ANY token is set (`MCP_READ_KEY`, `MCP_WRITE_KEY`, or `MCP_ADMIN_KEY`), all HTTP requests require the `Authorization: Bearer <token>` header\n- **Without Keys**: If NO tokens are set, the server runs without authentication (use only in secure environments)\n- **Multi-tier Access**: Different tokens provide different permission levels\n- **Temporary Exposure**: For ngrok or temporary remote access, always use strong tokens and revoke access when done\n- **Key Rotation**: Regularly rotate your tokens, especially after temporary exposures\n\n### Access Levels\n\n- **No Tokens Set**: Server runs without authentication (stdio mode safe, HTTP local only)\n- **Read Token**: `MCP_READ_KEY` - File listing, reading, searching, comparison operations\n- **Write Token**: `MCP_WRITE_KEY` - All read operations plus create, modify, copy, move, convert\n- **Admin Token**: `MCP_ADMIN_KEY` - All operations including file and directory deletion\n\n### Best Practices\n\n1. **Never commit secrets**: Use `.env` files (added to `.gitignore`)\n2. **Use strong tokens**: Generate cryptographically secure random tokens (`openssl rand -hex 32`)\n3. **Limit access scope**: Set `MCP_ALLOWED_PATH` to the minimum required directory\n4. **Choose appropriate token level**: Use read-only tokens for analysis, admin only when deletion needed\n5. **Monitor usage**: Check logs for unauthorized access attempts\n6. **Temporary access**: Unset all tokens and restart after temporary exposures\n\n## \ud83d\udca1 Usage Examples\n\n### File Operations\n```\n# Basic operations\n\"Create a file called notes.txt with my meeting notes\"\n\"Read lines 10-20 from config.py\"\n\"Copy config.json to backup/config_backup.json\"\n\n# Advanced operations\n\"Search for 'TODO' comments in all Python files\"\n\"Replace 'old_function' with 'new_function' in utils.py\"\n\"Create a ZIP archive of all source files\"\n\"Convert report.txt to PDF format\"\n\"Calculate SHA256 hash of important_file.pdf\"\n```\n\n### Batch Operations\n```\n\"Read all .py files in the src/ directory\"\n\"Create these 5 configuration files with their content\"\n\"Delete all .tmp files in the workspace\"\n\"Find all JavaScript files containing 'console.log'\"\n```\n\n## \ud83d\udee0\ufe0f Development\n\nSee [DEVELOPER.md](DEVELOPER.md) for detailed development setup and contribution guidelines.\n\n### Quick Development Setup\n\n```bash\n# Clone repository\ngit clone https://github.com/Luxshan2000/Local-File-MCP-Server.git\ncd Local-File-MCP-Server\n\n# Install dependencies\nuv sync\n\n# Run development server\nuv run server          # stdio mode\nuv run server-http     # HTTP mode\n\n# Run tests and linting\nuv run test\nuv run lint\nuv run format\n```\n\n## \ud83d\udcca API Reference\n\n### Available Tools\n\n| Tool | Description | Access Level |\n|------|-------------|--------------|\n| `read_file` | Read file contents or specific line ranges | Read-only |\n| `write_file` | Create or overwrite files | Read/Write |\n| `append_file` | Append content to existing files | Read/Write |\n| `delete_file` | Remove files and directories | Admin |\n| `copy_file` | Copy files and directories | Read/Write |\n| `move_file` | Move/rename files and directories | Read/Write |\n| `list_directory` | List directory contents with filtering | Read-only |\n| `create_directory` | Create new directories | Read/Write |\n| `get_file_info` | Get file metadata and permissions | Read-only |\n| `search_files` | Search for files by name patterns | Read-only |\n| `search_content` | Search file contents with regex | Read-only |\n| `replace_content` | Find and replace text in files | Read/Write |\n| `insert_lines` | Insert text at specific line numbers | Read/Write |\n| `delete_lines` | Remove specific line ranges | Read/Write |\n| `compare_files` | Generate diffs between files | Read-only |\n| `create_archive` | Create ZIP archives | Read/Write |\n| `extract_archive` | Extract ZIP archives | Read/Write |\n| `calculate_hash` | Generate file hashes (MD5, SHA1, SHA256) | Read-only |\n| `convert_document` | Convert text to PDF | Read/Write |\n| `convert_image` | Convert between image formats | Read/Write |\n| `convert_data` | Convert between CSV and JSON | Read/Write |\n\n## \ud83d\udc1b Troubleshooting\n\n### Common Issues\n\n**Server won't start:**\n```bash\n# Reinstall dependencies\nuv sync\n\n# Check Python version\npython --version  # Requires Python 3.10+\n```\n\n**Claude Desktop not connecting:**\n1. Verify all paths in configuration are absolute (full paths)\n2. Restart Claude Desktop after changing configuration\n3. Check server starts without errors: `uv run server`\n4. Ensure `MCP_ALLOWED_PATH` directory exists and is accessible\n\n**HTTP authentication fails:**\n1. Verify `MCP_ADMIN_KEY` is set before starting server\n2. Check Authorization header format: `Bearer your-secret-token`\n3. Ensure token matches exactly (no extra spaces)\n\n**Permission denied errors:**\n1. Check file/directory permissions\n2. Verify `MCP_ALLOWED_PATH` is accessible\n3. Ensure user has read/write permissions in the allowed directory\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## \ud83e\udd1d Contributing\n\nWe welcome contributions! Please see [DEVELOPER.md](DEVELOPER.md) for development setup and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for community guidelines.\n\n## \ud83d\udd17 Links\n\n- **Repository**: https://github.com/Luxshan2000/Local-File-MCP-Server\n- **PyPI Package**: https://pypi.org/project/fastmcp-file-server/\n- **Issues**: https://github.com/Luxshan2000/Local-File-MCP-Server/issues\n- **Model Context Protocol**: https://modelcontextprotocol.io/\n\n## \u2b50 Support\n\nIf you find this project useful, please consider giving it a star on GitHub!\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Secure MCP file server with multi-tier authentication",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/Luxshan2000/fastmcp-file-server",
        "Issues": "https://github.com/Luxshan2000/fastmcp-file-server/issues",
        "Repository": "https://github.com/Luxshan2000/fastmcp-file-server"
    },
    "split_keywords": [
        "ai-assistant",
        " authentication",
        " claude-desktop",
        " fastmcp",
        " file-operations",
        " file-server",
        " mcp",
        " model-context-protocol",
        " secure-server"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6aaca5beb99c0bc76296a95c101d3dc15816386c931beab746846d2a6084f2d7",
                "md5": "e41d09ea4d97659cfbbaafcadaf10d46",
                "sha256": "ef29e1e7740b13d455596b5603142689f46125b9e38cd76dfc0f57a09eabebaa"
            },
            "downloads": -1,
            "filename": "fastmcp_file_server-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e41d09ea4d97659cfbbaafcadaf10d46",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 19491,
            "upload_time": "2025-08-17T21:25:09",
            "upload_time_iso_8601": "2025-08-17T21:25:09.284078Z",
            "url": "https://files.pythonhosted.org/packages/6a/ac/a5beb99c0bc76296a95c101d3dc15816386c931beab746846d2a6084f2d7/fastmcp_file_server-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b028f56c15a4fb9b41c7efc207cb0b945eb5d69a6bd5a2267b7f85d5371e6622",
                "md5": "8e6c9e8bcfbd41c2df2b7b362a91e309",
                "sha256": "6602e54b3d4baeb5d7d65320f288226fb9acf7390d1e4b54d31e5a42d8461dc9"
            },
            "downloads": -1,
            "filename": "fastmcp_file_server-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8e6c9e8bcfbd41c2df2b7b362a91e309",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 123790,
            "upload_time": "2025-08-17T21:25:10",
            "upload_time_iso_8601": "2025-08-17T21:25:10.897665Z",
            "url": "https://files.pythonhosted.org/packages/b0/28/f56c15a4fb9b41c7efc207cb0b945eb5d69a6bd5a2267b7f85d5371e6622/fastmcp_file_server-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-17 21:25:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Luxshan2000",
    "github_project": "fastmcp-file-server",
    "github_not_found": true,
    "lcname": "fastmcp-file-server"
}
        
Elapsed time: 1.76301s