#!/bin/bash
set -eo pipefail
Dockerfile_PATH="./Dockerfile.MCPO-Proxy"
IMAGE_NAME="call518/mcpo-proxy-ambari-api"
echo "=== Building Docker image Name: ${IMAGE_NAME} ==="
# CUSTOM_TAG="${1:-latest}"
TAGs="
1.0.3
latest
"
for TAG in ${TAGs}
do
docker build -t ${IMAGE_NAME}:${TAG} -f ${Dockerfile_PATH} .
done
echo
read -p "Do you want to push the images to Docker Hub? (y/N): " answer
if [[ "$answer" == "y" || "$answer" == "Y" ]]; then
for TAG in ${TAGs}
do
docker push ${IMAGE_NAME}:${TAG}
done
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/call518/MCP-Ambari-API'
If you have feedback or need assistance with the MCP directory API, please join our Discord server