Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables interaction with Azure Data Factory instances, allowing users to list, read, create, update, and trigger pipelines, datasets, linked services, and runs through natural language.

README.md

mcp-adf — Azure Data Factory MCP server

One FastMCP server fronting one or more Azure Data Factory instances. Every tool takes a factory argument naming a target in connections.json; call list_factories first to see the configured targets.

Built on azure-mgmt-datafactory + azure-identity. Read tools work on any target; tools that create resources or trigger runs require the target to be flagged "writable": true.

Tools

Discovery / read (any target):

  • list_factories — configured targets
  • discover_factories — every ADF in a target's subscription (to fill in config)
  • list_pipelines / get_pipeline
  • list_datasets / get_dataset
  • list_linked_services / get_linked_service
  • list_triggers / get_trigger

Run monitoring / error analysis (any target):

  • list_pipeline_runs — run history over the last N days; filter by pipeline/status
  • get_pipeline_run
  • list_activity_runs — per-activity status / timing / error for a run
  • analyze_run_errors — run message + every failed activity's error code & message

Write (only against a "writable": true target):

  • create_or_update_linked_service
  • create_or_update_dataset
  • create_or_update_pipeline
  • run_pipeline — trigger a run, returns the run_id
  • cancel_pipeline_run
  • start_trigger / stop_trigger

Resource definitions are the JSON you see in ADF Studio's code view — pass either the full { "name": ..., "properties": {...} } object or just the inner properties object.

Configure

Copy connections.example.json to connections.json and fill in your targets:

{
  "dev": {
    "subscription_id": "00000000-0000-0000-0000-000000000000",
    "resource_group": "rg-data-dev",
    "factory_name": "adf-dev",
    "auth": "azure-cli",
    "writable": true
  },
  "prod": {
    "subscription_id": "00000000-0000-0000-0000-000000000000",
    "resource_group": "rg-data-prod",
    "factory_name": "adf-prod",
    "auth": "azure-cli",
    "writable": false
  }
}

connections.json and .env are gitignored — they never leave your machine.

Auth

Set "auth" per target:

| value | how it signs in | |-------|-----------------| | azure-cli (default) | reuses an az login token (requires Azure CLI) | | broker | Windows WAM broker popup (no CLI needed; great in tenants that block device-code flow) | | interactive | browser sign-in popup | | service-principal | app registration; secret read from client_secret_env (see .env.example) | | default | DefaultAzureCredential (env → cli → broker → …) |

The identity needs an ADF RBAC role on the factory — Data Factory Contributor for create/trigger, Reader for the read tools.

Setup

python -m venv .venv
.\.venv\Scripts\python.exe -m pip install -r requirements.txt
copy connections.example.json connections.json   # then edit it
.\.venv\Scripts\python.exe server.py              # smoke test (Ctrl+C to stop)

Finding your factories

discover.py signs in once and lists every subscription and the data factories in each, so you can fill in subscription_id / resource_group / factory_name:

.\.venv\Scripts\python.exe -m pip install azure-mgmt-subscription azure-mgmt-resource
.\.venv\Scripts\python.exe discover.py

Register with an MCP client

See examples/mcp.json:

{
  "mcpServers": {
    "adf": {
      "command": "C:\\path\\to\\mcp-adf\\.venv\\Scripts\\python.exe",
      "args": ["C:\\path\\to\\mcp-adf\\server.py"],
      "env": {}
    }
  }
}

Use with Claude Desktop

Claude Desktop reads its MCP servers from claude_desktop_config.json. Open it from Settings → Developer → Edit Config (this creates the file if it doesn't exist), or edit it directly:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Add this server under mcpServers, using absolute paths to the venv's Python and server.py:

{
  "mcpServers": {
    "adf": {
      "command": "C:\\path\\to\\mcp-adf\\.venv\\Scripts\\python.exe",
      "args": ["C:\\path\\to\\mcp-adf\\server.py"],
      "env": {}
    }
  }
}

On macOS the paths are POSIX, e.g. "command": "/Users/you/mcp-adf/.venv/bin/python". Save the file and fully quit and reopen Claude Desktop (use Quit from the tray/menu-bar icon — closing the window isn't enough). The server's tools then appear in the tools (🔌) menu of a new chat.

License

MIT — see LICENSE.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.