Skip to main content
Glama
quickstart.shβ€’1.89 kB
#!/bin/bash # SplitMind MCP Server Quick Start Script set -e echo "πŸš€ SplitMind MCP Agent Communication Server Setup" echo "================================================" # Check if Docker is installed if ! command -v docker &> /dev/null; then echo "❌ Docker is not installed. Please install Docker first." exit 1 fi # Check if Docker Compose is installed if ! command -v docker-compose &> /dev/null; then echo "❌ Docker Compose is not installed. Please install Docker Compose first." exit 1 fi # Create necessary directories echo "πŸ“ Creating directories..." mkdir -p logs # Make entrypoint executable echo "πŸ”§ Setting permissions..." chmod +x entrypoint.sh # Build and start services echo "πŸ—οΈ Building Docker images..." docker-compose build echo "πŸš€ Starting services..." docker-compose up -d # Wait for services to be ready echo "⏳ Waiting for services to start..." sleep 5 # Check service health echo "πŸ₯ Checking service health..." if docker-compose ps | grep -q "Up"; then echo "βœ… Services are running!" else echo "❌ Services failed to start. Check logs with: docker-compose logs" exit 1 fi # Show service status echo "" echo "πŸ“Š Service Status:" docker-compose ps echo "" echo "πŸŽ‰ SplitMind MCP Server is ready!" echo "" echo "πŸ“ Service URLs:" echo " - MCP Server: localhost:5000" echo " - Redis: localhost:6379" echo "" echo "πŸ“ Useful commands:" echo " - View logs: docker-compose logs -f" echo " - Stop services: docker-compose down" echo " - Start with monitoring: docker-compose --profile debug up -d" echo " - Redis CLI: docker exec -it splitmind-redis redis-cli" echo "" echo "πŸ”Œ Configure your Claude Code agents to connect to the MCP server" echo " by adding the server configuration to their MCP settings." echo "" echo "πŸ“š See README.md for detailed documentation and examples."

Latest Blog Posts

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/webdevtodayjason/A2AMCP'

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