We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DevSkillsIT/Skills-MCP-AD'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.py•359 B
"""
Setup script for ActiveDirectoryMCP.
This file is used for backward compatibility with older build systems.
Modern builds should use pyproject.toml configuration.
"""
from setuptools import setup, find_packages
setup(
name="active-directory-mcp",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.9",
)