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
start_server.sh•916 B
#!/bin/bash
# ActiveDirectoryMCP Server Startup Script
# This script starts the ActiveDirectoryMCP server in stdio mode
set -e
echo "Starting ActiveDirectoryMCP Server..."
# Check if virtual environment exists
if [ ! -d ".venv" ]; then
echo "Virtual environment not found. Please run setup first."
exit 1
fi
# Activate virtual environment
source .venv/bin/activate
# Check if config file exists
if [ -z "$AD_MCP_CONFIG" ]; then
export AD_MCP_CONFIG="ad-config/config.json"
fi
if [ ! -f "$AD_MCP_CONFIG" ]; then
echo "Configuration file not found: $AD_MCP_CONFIG"
echo "Please copy ad-config/config.example.json to ad-config/config.json and configure it."
exit 1
fi
echo "Using configuration: $AD_MCP_CONFIG"
# Set PYTHONPATH
export PYTHONPATH="$PWD/src:$PYTHONPATH"
# Start the server
echo "Starting ActiveDirectoryMCP server in stdio mode..."
python -m active_directory_mcp.server