We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adrianmikula/JakartaMigration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# ============================================
# Bug Bounty Finder - Environment Variables
# ============================================
# Copy this file to .env and fill in your actual values
# DO NOT commit .env to version control!
# ============================================
# GitHub Configuration
# ============================================
# Personal Access Token for GitHub API (recommended for higher rate limits)
# Get from: https://github.com/settings/tokens
# Required scopes: repo, read:org, read:user
GITHUB_API_TOKEN=
# Webhook secret for verifying GitHub webhook signatures
# Generate with: openssl rand -hex 32
GITHUB_WEBHOOK_SECRET=
# ============================================
# Bug Bounty Platforms
# ============================================
# Algora API Key (optional - check if Algora requires authentication)
# Get from: https://algora.io (if available)
ALGORA_API_KEY=
# Polar.sh API Key (optional - check if Polar.sh requires authentication)
# Get from: https://polar.sh (if available)
POLAR_API_KEY=
# ============================================
# Security & Vulnerability
# ============================================
# NVD API Key (optional but recommended for 10x rate limit improvement)
# Get from: https://nvd.nist.gov/developers/request-an-api-key
# Without key: 5 requests per 30 seconds
# With key: 50 requests per 30 seconds
NVD_API_KEY=
# ============================================
# LLM Configuration (Ollama)
# ============================================
# Ollama base URL (default: http://localhost:11434)
OLLAMA_BASE_URL=http://localhost:11434
# Ollama model to use (default: deepseek-coder:6.7b)
# Pull model with: ollama pull deepseek-coder:6.7b
OLLAMA_MODEL=deepseek-coder:6.7b
# ============================================
# Database Configuration
# ============================================
# PostgreSQL connection (defaults shown)
DB_USERNAME=postgres
DB_PASSWORD=postgres
# ============================================
# Redis Configuration
# ============================================
# Redis connection (defaults shown)
REDIS_HOST=localhost
REDIS_PORT=6379
# ============================================
# Repository Configuration
# ============================================
# Base path for cloning repositories (default: ./repos)
REPO_CLONE_PATH=./repos