We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drAbreu/alex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
alex-mcp-wrapper.sh•323 B
#!/bin/bash
# Wrapper script for alex-mcp that activates the virtual environment
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Activate the virtual environment
source "$SCRIPT_DIR/venv/bin/activate"
# Run the MCP server
exec python -m alex_mcp.server "$@"