ADLS2 MCP Server πŸš€

by erikhoward

6 stars
345 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) server implementation for Azure Data Lake Storage Gen2. It provides a standardized interface for interacting with ADLS2 storage, enabling file operations through MCP tools. Designed for developers and data engineers who need to manage ADLS2…

Details

Author
erikhoward
GitHub stars
6
Downloads
345
Categories
Other

- List, create, and delete filesystems (containers)
- Upload and download files to/from ADLS2
- Check file existence and rename/move files
- Get and set file properties and metadata
- Create, delete, rename, and list directories

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name ADLS2 MCP Server πŸš€
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via uv pip install adls2-mcp-server (requires Python 3.13+). Configure by editing claude_desktop_config.json with the command adls2-mcp-server and environment variables for storage credentials and paths. Restart Claude Desktop to apply.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "adls2 mcp server \ud83d\ude80": {
            "adls-mcp-server": {
                "command": "uv",
                "args": [
                    "pip",
                    "install",
                    "adls2-mcp-server"
                ]
            }
        }
    }
}

McpServers

{
    "adls-mcp-server": {
        "command": "uv",
        "args": [
            "pip",
            "install",
            "adls2-mcp-server"
        ]
    }
}

ADLS2 MCP Server πŸš€

A Model Context Protocol (MCP) server implementation for Azure Data Lake Storage Gen2. This service provides a standardized interface for interacting with ADLS2 storage, enabling file operations through MCP tools.

License Python Version uv MCP

Setup πŸ› οΈ

Installation πŸ“¦

Requires Python 3.13 or higher.

Install the package using uv:

uv pip install adls2-mcp-server

MCP Configuration βš™οΈ

Claude Desktop Configuration

1 - Edit Claude Desktop Configuration:

Open claude_desktop_config.json and add the following configuration.

On MacOs, the file is located here:
~/Library/Application Support/Claude Desktop/claude_desktop_config.json.

On Windows, the file is located here:
%APPDATA%\Claude Desktop\claude_desktop_config.json.

{
    "mcpServers": {
        "adls2": {
            "command": "adls2-mcp-server",
            "env": {
                "LOG_LEVEL": "DEBUG",
                "UPLOAD_ROOT": "/path/to/store/uploads",
                "DOWNLOAD_ROOT": "/path/to/store/downloads",
                "AZURE_STORAGE_ACCOUNT_NAME": "your-azure-adls2-storage-account-name",
                "READ_ONLY_MODE": "false"
            }
        }
    }
}

The following is a table of available environment configuration variables:

| Variable | Description | Default |
| --- | --- | --- |
| LOG_LEVEL | Logging level | INFO |
| UPLOAD_ROOT | Root directory for file uploads | ./uploads |
| DOWNLOAD_ROOT | Root directory for file downloads | ./downloads |
| AZURE_STORAGE_ACCOUNT_NAME | Azure ADLS2 storage account name | None |
| AZURE_STORAGE_ACCOUNT_KEY | Azure ADLS2 storage account key (optional) | None |
| READ_ONLY_MODE | Whether the server should operate in read-only mode | true |

If AZURE_STORAGE_ACCOUNT_KEY is not set, the server will attempt to authenticate using Azure CLI credentials. Ensure you have logged in with Azure CLI before running the server:

az login

2 - Restart Claude Desktop.

Available Tools πŸ”§

Filesystem (container) Operations

- list_filesystems - List all filesystems in the storage account
- create_filesystem - Create a new filesystem
- delete_filesystem - Delete an existing filesystem

File Operations

- upload_file - Upload a file to ADLS2
- download_file - Download a file from ADLS2
- file_exists - Check if a file exists
- rename_file - Rename/move a file
- get_file_properties - Get file properties
- get_file_metadata - Get file metadata
- set_file_metadata - Set file metadata
- set_file_metadata_json - Set multiple metadata key-value pairs using JSON

Directory Operations

- create_directory - Create a new directory
- delete_directory - Delete a directory
- rename_directory - Rename/move a directory
- directory_exists - Check if a directory exists
- directory_get_paths - Get all paths under the specified directory

Development πŸ’»

Local Development Setup

1 - Clone the repository:

git clone https://github.com/erikhoward/adls2-mcp-server.git
cd adls2-mcp-server

2 - Create and activate virtual environment:

Linux/macOS:

python -m venv .venv
source .venv/bin/activate

Windows:

.venv\Scripts\activate

3 - Install dependencies:

pip install -e ".[dev]"

4 - Copy and configure environment variables:

cp .env.example .env

Edit .env with your settings.

AZURE_STORAGE_ACCOUNT_NAME=your_azure_adls2_storage_account_name
AZURE_STORAGE_ACCOUNT_KEY=your_azure_adls2_storage_key (optional)
DOWNLOAD_ROOT=/path/to/download/folder
UPLOAD_ROOT=/path/to/upload/folder
READ_ONLY_MODE=True
LOG_LEVEL=INFO

If AZURE_STORAGE_ACCOUNT_KEY is not set, the server will attempt to authenticate using Azure CLI credentials. Ensure you have logged in with Azure CLI before running the server:

az login

5 - Claude Desktop Configuration

Open claude_desktop_config.json and add the following configuration.

On MacOs, the file is located here:
~/Library/Application Support/Claude Desktop/claude_desktop_config.json.

On Windows, the file is located here:
%APPDATA%\Claude Desktop\claude_desktop_config.json.

{
    "mcpServers": {
        "adls2": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/adls2-mcp-server/repo",
                "run",
                "adls2-mcp-server"
            ],
            "env": {
                "LOG_LEVEL": "DEBUG",
                "UPLOAD_ROOT": "/path/to/store/uploads",
                "DOWNLOAD_ROOT": "/path/to/store/downloads",
                "AZURE_STORAGE_ACCOUNT_NAME": "your-azure-adls2-storage-account-name",
                "READ_ONLY_MODE": "false"
            }
        }
    }
}

6 - Restart Claude Desktop.

Contributions 🀝

Contributions are welcome! Please feel free to submit a Pull Request.

1. Fork the repository
2. Create your feature branch (git checkout -b feature/AmazingFeature)
3. Commit your changes (git commit -m '✨ Add some AmazingFeature')
4. Push to the branch (git push origin feature/AmazingFeature)
5. Open a Pull Request

License βš–οΈ

Licensed under MIT - see LICENSE.md file.

This is not an official Microsoft product.

No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.