We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bigeyedata/bigeye-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-docker.sh•1.11 KiB
#!/bin/bash
# Build script for Bigeye MCP Server Docker image
# This creates an ephemeral Docker image for use with Claude Desktop
set -e
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Default image name and tag
IMAGE_NAME="bigeye-mcp-server"
IMAGE_TAG="latest"
echo -e "${GREEN}Building Bigeye MCP Server Docker image...${NC}"
echo "Image: ${IMAGE_NAME}:${IMAGE_TAG}"
# Build the Docker image with both tags
docker build -t "${IMAGE_NAME}:${IMAGE_TAG}" -t "bigeye-mcp-ephemeral:latest" .
if [ $? -eq 0 ]; then
echo -e "${GREEN}Docker image built successfully!${NC}"
echo ""
echo -e "${YELLOW}To use this image with Claude Desktop, add the following to your config:${NC}"
echo -e "${YELLOW}Location: ~/Library/Application Support/Claude/claude_desktop_config.json${NC}"
echo ""
cat << EOF
{
"mcpServers": {
"bigeye": {
"command": "/absolute/path/to/mcp-wrapper.sh"
}
}
}
EOF
echo ""
echo -e "${GREEN}Or start the long-lived container: ./bigeye-mcp.sh start${NC}"
else
echo -e "${RED}Docker build failed!${NC}"
exit 1
fi