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
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
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 47,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

MCP server for Cloudera Manager and CDP cluster administration, enabling monitoring, configuration, and troubleshooting of Hadoop ecosystem services through natural language.

README.md

cdp-mcp-server

MCP (Model Context Protocol) server for Cloudera Manager / CDP cluster administration and troubleshooting.

Fork of dvergari/cloudera-mcp-server — extended with pluggable registry backends (File, Env, Iceberg) and additional service clients (YARN, Spark History Server, HDFS NameNode, Oozie).

Quick Start (general purpose — no Iceberg required)

Option 1: FileRegistry (recommended for development)

# Install
git clone https://github.com/disoardi/cdp-mcp-server.git
cd cdp-mcp-server
python3.12 -m venv .venv
source .venv/bin/activate
pip install -e .

# Configure
cp cm_instances.yaml.example cm_instances.yaml
# Edit cm_instances.yaml with your CM credentials

# Run
REGISTRY_BACKEND=file cdp-mcp

Option 2: EnvRegistry (single CM, zero config)

REGISTRY_BACKEND=env \
  CM_HOST=cm.example.com \
  CM_USERNAME=admin \
  CM_PASSWORD=changeme \
  CM_USE_TLS=false \
  cdp-mcp

Claude Desktop Configuration

FileRegistry

{
  "mcpServers": {
    "cdp": {
      "command": "/path/to/cdp-mcp-server/.venv/bin/cdp-mcp",
      "env": {
        "REGISTRY_BACKEND": "file",
        "REGISTRY_FILE_PATH": "/path/to/cm_instances.yaml"
      }
    }
  }
}

EnvRegistry (single CM)

{
  "mcpServers": {
    "cdp": {
      "command": "/path/to/cdp-mcp-server/.venv/bin/cdp-mcp",
      "env": {
        "REGISTRY_BACKEND": "env",
        "CM_HOST": "cm.example.com",
        "CM_USERNAME": "admin",
        "CM_PASSWORD": "changeme",
        "CM_USE_TLS": "false"
      }
    }
  }
}

Available Tools

Cloudera Manager (original dvergari tools)

  • list_clusters — List all managed DataHub clusters
  • list_services — List services on a cluster
  • get_service_logs — Extract service logs with time range filtering
  • get_alerts — Get cluster alerts and events
  • get_service_metrics — Time-series metrics via tsquery
  • get_config / update_config — Read and write service configuration
  • run_service_command / get_command_status — Execute async CM commands
  • get_host_status — Host health and role inventory
  • get_audit_events — CM audit log
  • list_datahubs — Enumerate DataHub clusters
  • refresh_cluster_map — Rebuild cluster→CM mapping

Registry Management

  • registry_list — List registered CM instances
  • registry_stats — Registry statistics
  • registry_add — Register a new CM instance
  • registry_deactivate — Deactivate a CM instance
  • registry_update_field — Update a registry field
  • registry_reload — Hot-reload registry

YARN ResourceManager

  • get_yarn_app — Get YARN application details and diagnostics
  • list_yarn_apps — List YARN applications with filters
  • get_yarn_queue — Get YARN scheduler queue capacity/usage

Spark History Server

  • get_spark_app — Get Spark application summary
  • list_spark_apps — List Spark applications
  • get_spark_stages — Get stage details (useful for debugging slow jobs)

HDFS NameNode

  • get_namenode_status — NameNode health, capacity, corrupt/missing blocks

Oozie

  • get_oozie_job — Get workflow or coordinator job details
  • list_oozie_jobs — List Oozie jobs with filters

Registry Backends

| Backend | Use case | Requires | |---------|----------|---------| | file | Development, small teams | cm_instances.yaml | | env | Single CM, quick tests | env vars CM_HOST, CM_USERNAME, CM_PASSWORD | | iceberg | Production CDP environments | Impala/HiveServer2 + Iceberg table |

License

Apache License 2.0 — see LICENSE. Original work © Davide Vergari. Modifications © Davide Isoardi.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

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