Skip to main content

MCP server for Active Directory management with Python server and PowerShell backend

Project description

mcp-active-directory-server

MCP server for Active Directory management with Python server and PowerShell backend

🏗️ Architecture Overview

Claude Desktop ↔ MCP Protocol ↔ Python Server ↔ PowerShell ↔ Active Directory

The system uses a 3-tier architecture:

  • Presentation Layer : Claude Desktop (AI interface)
  • Application Layer : Python MCP Server (protocol handler & orchestrator)
  • Data Layer : PowerShell Script → Active Directory (actual AD operations)

📁 Component Breakdown

1. simple_mcp_server.py - The MCP Protocol Bridge 🌉

Role: Acts as the main orchestrator and protocol translator

What it does:

  • Protocol Handler : Implements the Model Context Protocol (MCP) JSON-RPC 2.0 specification

  • Tool Registry: Defines 14 available tools for Claude to use:

    • 6 Basic tools (user management, groups, connections)
    • 8 Advanced tools (domain info, forest info, trusts, replication, etc.)
  • Credential Manager: Securely retrieves AD service account credentials from Windows Credential Manager

  • PowerShell Orchestrator: Executes the PowerShell script with appropriate parameters

  • Response Formatter: Converts PowerShell JSON output into MCP-compliant responses

Key Functions:

async def handle_request(request)     # Handles MCP protocol requests

async def run_powershell_script()    # Executes PowerShell operations

async def get_credentials_from_credential_manager()  # Security layer

2. ad_operations.ps1 - The Active Directory Workhorse ⚙️

Role: Contains all actual Active Directory operations and business logic

What it does:

  • AD Operations: 14 distinct functions for different AD tasks
  • Input Validation: Handles JSON parameter parsing and validation
  • Credential Management: Uses provided domain credentials for AD authentication
  • Error Handling: Comprehensive try-catch blocks with structured error responses
  • Structured Output: Returns JSON-formatted results for consistent processing

Function Categories:

Basic Operations (6):

Create-User              # New-ADUser operations
Modify-User              # Set-ADUser operations  
Add-UserToGroup          # Add-ADGroupMember
Remove-UserFromGroup     # Remove-ADGroupMember
Get-UserInfo             # Get-ADUser with all properties
Test-ADConnection        # Domain connectivity test

Enhanced Operations (8):

Get-DomainInfo          # Get-ADDomain equivalent
Get-ForestInfo          # Get-ADForest equivalent
Get-TrustInfo           # Get-ADTrust relationships
Get-DomainPasswordPolicy # Get-ADDefaultDomainPasswordPolicy
Get-ReplicationStatus   # AD replication health
Get-AllUserAttributes   # Deep user inspection
Get-AllComputerAttributes # Deep computer inspection
Get-SitesAndServices    # Sites, links, subnets

3. Security & Configuration Layer 🔐

Credential Management:

  • Uses Windows Credential Manager for secure credential storage
  • Target: "MCPActiveDirectory"
  • Service account with minimal required permissions
  • No hardcoded passwords in scripts

Configuration Variables:

$TargetOU = "OU=ManagedUsers,DC=demo,DC=local"   # Managed OU
$DomainName = "demo.local"                       # Domain name
$DefaultPassword = "TempPassword123!"            # Initial password (this will be used if no password is supplied)

🔄 Data Flow Architecture

1. Request Flow (Claude → AD)

Claude Desktop
    ↓ (User request: "Create user John Smith")
Python MCP Server
    ↓ (Validates request, formats parameters)
    ↓ (Retrieves credentials from Credential Manager)
    ↓ (Calls PowerShell with JSON data)

PowerShell Script
    ↓ (Parses JSON, authenticates to AD)
    ↓ (Executes New-ADUser cmdlet)
Active Directory

2. Response Flow (AD → Claude)

Active Directory
  ↓ (Returns AD object/status)
PowerShell Script  
  ↓ (Formats as JSON with success/error status)
Python MCP Server
  ↓ (Receives JSON, validates, formats for MCP)
  ↓ (Creates MCP-compliant response)
Claude Desktop
  ↓ (Displays formatted result to user)

🎯 Component Responsibilities

Python Server Responsibilities:

  • ✅ MCP protocol compliance
  • ✅ Tool registration and discovery
  • ✅ Security (credential retrieval)
  • ✅ Error handling and logging
  • ✅ Async operation handling
  • ✅ JSON-RPC 2.0 implementation

PowerShell Script Responsibilities:

  • ✅ All Active Directory operations
  • ✅ Parameter validation and sanitization
  • ✅ Domain authentication
  • ✅ Business logic implementation
  • ✅ Structured error reporting
  • ✅ Comprehensive data retrieval

Security Model:

  • 🔐 Credentials: Stored in Windows Credential Manager (encrypted)
  • 🔐 Authentication: Service account with minimal permissions
  • 🔐 Scope: Limited to specific OU (ManagedUsers)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_rosingul_mcp_active_directory_server-1.0.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_rosingul_mcp_active_directory_server-1.0.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_rosingul_mcp_active_directory_server-1.0.0.tar.gz
Algorithm Hash digest
SHA256 83c3b87e74095824df629c352aa334ab54bafc272a1f902b5affc23b5912679e
MD5 54fe00dfe9e86617a5724e4602ae773e
BLAKE2b-256 bef4b152628de3d7933b98eb9bdee44724b81110d7f00e5af32eef70eb74eae8

See more details on using hashes here.

File details

Details for the file iflow_mcp_rosingul_mcp_active_directory_server-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_rosingul_mcp_active_directory_server-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_rosingul_mcp_active_directory_server-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eaff691912272976241066e9b61bc70156ef9351ac33ec08f3fb5825ac197789
MD5 d0e85576ab8fc9c0f45284a09ce40e68
BLAKE2b-256 5f8eeca2ad2ad7abe97e2a49ac7781148ac3ad32179ff4246e264f183162520c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page