We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/spie-mkroehn/baby-skynet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•2.13 kB
# Baby-SkyNet Environment Configuration Template
# Copy this file to .env and fill in your actual values
# Anthropic API Key for Claude models
# Get your API key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# OpenAI API Key for OpenAI models (e.g. Embeddings)
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# Backend LLM Models Configuration
# Provider-Detection:
# - **Automatically:** `claude-*` models → Anthropic API
# - **Default:** All others → Ollama (local)
BRAIN_MODEL=claude-3-5-haiku-latest
# Backend Embedding Models Configuration
# Provider-Detection:
# - **"openai"** → OpenAI API (requires OPENAI_API_KEY)
# - **Any other value** (e.g., "nomic-embed-text:latest") → Ollama (local)
EMBEDDING_MODEL=openai
# Container Data Persistence Paths
# These define where container data is stored on the host system
# Adjust the base path to your preferred location
CONTAINER_DATA_ROOT=/path/to/your/baby-skynet-data
POSTGRES_DATA_PATH=${CONTAINER_DATA_ROOT}/postgres
CHROMADB_DATA_PATH=${CONTAINER_DATA_ROOT}/chromadb
NEO4J_DATA_PATH=${CONTAINER_DATA_ROOT}/neo4j
NEO4J_LOGS_PATH=${CONTAINER_DATA_ROOT}/neo4j-logs
# Container Configuration
CONTAINER_ENGINE=podman
POSTGRES_IMAGE=postgres:15
CHROMADB_IMAGE=chromadb/chroma:latest
NEO4J_IMAGE=neo4j:5-community
# PostgreSQL Primary Database Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=baby_skynet
POSTGRES_USER=claude
POSTGRES_PASSWORD=your_secure_password_here
# ChromaDB Vector Database (optional, default: http://localhost:8000)
CHROMA_URL=http://localhost:8000
CHROMA_COLLECTION=claude-main
# Neo4j Graph Database Configuration
NEO4J_URL=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=your_neo4j_password_here
NEO4J_DATABASE=neo4j
NEO4J_AUTH=neo4j/your_neo4j_password_here
# Optional: Ollama Configuration (for local LLM and embedding models)
OLLAMA_BASE_URL=http://localhost:11434
# Optional: Database URL (auto-constructed from POSTGRES_* variables if not set)
# DATABASE_URL=postgresql://claude:password@localhost:5432/baby_skynet