#!/bin/bash
# Load .env file if it exists
if [ -f .env ]; then
export $(grep -v '^#' .env | xargs)
fi
# Run with uv
# Default to stdio mode if not specified
MODE=${1:-stdio}
if [ "$MODE" = "http" ]; then
echo "Starting server in HTTP mode..."
TRANSPORT=http PORT=${PORT:-8000} uv run python -m src
else
echo "Starting server in stdio mode..."
uv run python -m src
fi
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/idoyudha/mcp-keycloak'
If you have feedback or need assistance with the MCP directory API, please join our Discord server