Skip to main content
Glama

Zerion MCP Server

by SAK1337
docker-start.sh•1.73 kB
#!/bin/bash # Quick start script for Docker deployment set -e echo "🐳 Zerion MCP Server - Docker Quick Start" echo "==========================================" # Check if Docker is installed if ! command -v docker &> /dev/null; then echo "āŒ Error: Docker is not installed" echo "Please install Docker from https://docs.docker.com/get-docker/" exit 1 fi # Check if Docker Compose is installed if ! command -v docker-compose &> /dev/null && ! docker compose version &> /dev/null; then echo "āŒ Error: Docker Compose is not installed" echo "Please install Docker Compose from https://docs.docker.com/compose/install/" exit 1 fi # Check if .env file exists if [ ! -f .env ]; then echo "šŸ“ Creating .env file from example..." cp .env.example .env echo "āš ļø Please edit .env and set your ZERION_API_KEY" echo " Then run this script again." exit 0 fi # Check if API key is set if grep -q "zk_dev_your_api_key_here" .env; then echo "āš ļø Warning: ZERION_API_KEY in .env appears to be the example value" echo " Please edit .env and set your actual API key" read -p "Continue anyway? (y/N): " -n 1 -r echo if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1 fi fi # Create logs directory if it doesn't exist mkdir -p logs echo "" echo "šŸ”Ø Building Docker image..." docker-compose build echo "" echo "šŸš€ Starting Zerion MCP Server..." docker-compose up -d echo "" echo "āœ… Server is starting!" echo "" echo "šŸ“Š View logs:" echo " docker-compose logs -f" echo "" echo "šŸ” Check status:" echo " docker-compose ps" echo "" echo "šŸ›‘ Stop server:" echo " docker-compose down" echo "" echo "šŸ“– Full documentation: See DOCKER.md"

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/SAK1337/myzerionmcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server