Skip to content
VS Code

LDAP Assistant MCP for VS Code

io.github.droideck/ldap-assistant-mcp

MCP server for 389 Directory Server health diagnostics, log analysis, and SOS-report investigation

client:VS Code transport:stdio runtime:pypi

Install LDAP Assistant MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ldap-servers-config",
      "description": "LDAP_SERVERS_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "ldap-assistant-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ldap-assistant-mcp"
      ],
      "env": {
        "LDAP_SERVERS_CONFIG": "${input:ldap-servers-config}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

LDAP Assistant MCP in other clients