We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dylanmarriner/MCP-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•2.03 KiB
# KAIZA MCP Environment Configuration
# Copy this file to .env and fill in the values
# ============================================================================
# BOOTSTRAP SECRET (Required for first plan creation)
# ============================================================================
# Generate with: openssl rand -base64 32
# This secret authenticates the creation of the first approved plan
# After bootstrap is complete, this secret can be unset
KAIZA_BOOTSTRAP_SECRET=your-generated-secret-here
# ============================================================================
# DEVELOPMENT / DEBUGGING
# ============================================================================
# Set to 'true' to enable verbose logging
DEBUG=false
# ============================================================================
# MCP CLIENT CONFIGURATION
# ============================================================================
# Which role this instance runs as: ANTIGRAVITY or WINDSURF
MCP_ROLE=WINDSURF
# ============================================================================
# WORKSPACE CONFIGURATION
# ============================================================================
# Absolute path to the workspace/project root
# If not set, KAIZA will auto-detect based on begin_session call
# WORKSPACE_ROOT=/absolute/path/to/project
# ============================================================================
# AUDIT LOGGING
# ============================================================================
# Path to audit log file (default: audit-log.jsonl in workspace root)
# AUDIT_LOG_PATH=/custom/path/to/audit-log.jsonl
# ============================================================================
# SECURITY
# ============================================================================
# Maximum age of bootstrap signatures (milliseconds)
# Default: 300000 (5 minutes)
# BOOTSTRAP_SIGNATURE_TTL=300000
# Enable cryptographic verification of all operations
# Default: true (always enabled, change not recommended)
# ENABLE_CRYPTO_VERIFICATION=true