We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lukaizhi5559/thinkdrop-vision-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Vision Service Configuration
PORT=3006
HOST=0.0.0.0
# API Key for MCP authentication
API_KEY=your-vision-api-key-here
# Allowed origins for CORS
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
# OCR Configuration
OCR_ENGINE=paddleocr
OCR_LANGUAGE=en
OCR_USE_ANGLE_CLS=true
# VLM Configuration (lazy-loaded on first use)
VLM_ENABLED=true
VLM_MODEL=openbmb/MiniCPM-V-2_6
VLM_DEVICE=auto
VLM_MAX_TOKENS=256
# Watch Configuration
WATCH_DEFAULT_INTERVAL_MS=2000
WATCH_CHANGE_THRESHOLD=0.08
WATCH_MAX_QUEUE_SIZE=10
# Temp File Management
TEMP_DIR=/tmp/thinkdrop-vision
TEMP_FILE_CLEANUP=true
TEMP_FILE_MAX_AGE_MS=300000
# User Memory Service Integration
USER_MEMORY_SERVICE_URL=http://localhost:3003
USER_MEMORY_API_KEY=your-user-memory-api-key
# Performance
REQUEST_TIMEOUT=30000
MAX_CONCURRENT_REQUESTS=5
# Logging
LOG_LEVEL=INFO
LOG_FORMAT=json
# Health Check
HEALTH_CHECK_ENABLED=true