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
env.example•4.43 kB
# Jakarta Migration MCP Server - Environment Variables
# Copy this file to .env and fill in your actual values
# The .env file is gitignored and will not be committed to the repository
# ============================================================================
# License & Feature Flags
# ============================================================================
# License key for premium features
# For local users: Set to your Stripe subscription ID (sub_...) or Apify API token
# For Apify deployment: Leave empty (users provide their own license keys)
JAKARTA_MCP_LICENSE_KEY=
# Purchase URL for premium licenses (Stripe payment link)
JAKARTA_MCP_PURCHASE_URL=https://buy.stripe.com/00w9AU4lv5sT7lddpM2kw00
# ============================================================================
# Apify Configuration (for Apify-hosted deployment)
# ============================================================================
# Apify API token - YOUR account token for making API calls to Apify
# Get from: https://console.apify.com/account#/integrations
# This is used by the server to validate user license keys
APIFY_API_TOKEN=
# Enable/disable Apify license validation
APIFY_VALIDATION_ENABLED=true
# Apify API base URL (usually doesn't need to change)
APIFY_API_URL=https://api.apify.com/v2
# Apify Actor ID (optional, auto-set when running on Apify)
# Set this if you want to validate actor access
APIFY_ACTOR_ID=
# Apify cache TTL in seconds (default: 3600)
APIFY_CACHE_TTL=3600
# Apify request timeout in seconds (default: 5)
APIFY_TIMEOUT=5
# Allow offline validation when Apify API is unavailable (default: true)
APIFY_ALLOW_OFFLINE=true
# ============================================================================
# Stripe Configuration (for Stripe license validation)
# ============================================================================
# Stripe secret key - YOUR Stripe secret key for making API calls
# Get from: https://dashboard.stripe.com/apikeys
# Use sk_test_... for testing, sk_live_... for production
# NEVER commit this to source control!
STRIPE_SECRET_KEY=
# Enable/disable Stripe license validation
STRIPE_VALIDATION_ENABLED=false
# Stripe API base URL (usually doesn't need to change)
STRIPE_API_URL=https://api.stripe.com/v1
# Stripe Product IDs for tier identification
# Get from: https://dashboard.stripe.com/products
STRIPE_PRODUCT_ID_PREMIUM=
STRIPE_PRODUCT_ID_ENTERPRISE=
# Stripe license key prefix (default: stripe_)
STRIPE_LICENSE_PREFIX=stripe_
# Stripe cache TTL in seconds (default: 3600)
STRIPE_CACHE_TTL=3600
# Stripe request timeout in seconds (default: 5)
STRIPE_TIMEOUT=5
# Allow offline validation when Stripe API is unavailable (default: true)
STRIPE_ALLOW_OFFLINE=true
# Stripe webhook secret (for future webhook validation)
STRIPE_WEBHOOK_SECRET=
# ============================================================================
# Apify Actor Environment Variables (auto-set by Apify platform)
# ============================================================================
# These are automatically set by Apify when running as an Actor
# You don't need to set these manually
# ACTOR_ID= # Auto-set by Apify
# ACTOR_RUN_ID= # Auto-set by Apify
# ACTOR_MAX_TOTAL_CHARGE_USD= # Optional: Set spending limit
# ============================================================================
# MCP Transport Configuration
# ============================================================================
# MCP transport mode: stdio (local) or sse (Apify/HTTP)
# For local development: stdio
# For Apify deployment: sse
MCP_TRANSPORT=stdio
# SSE transport configuration (only used when MCP_TRANSPORT=sse)
MCP_SSE_PORT=8080
MCP_SSE_PATH=/mcp/sse
# ============================================================================
# Local Development Notes
# ============================================================================
# For local development:
# 1. Copy this file to .env
# 2. Fill in APIFY_API_TOKEN if you want to test Apify license validation
# 3. Fill in STRIPE_SECRET_KEY if you want to test Stripe license validation
# 4. Set JAKARTA_MCP_LICENSE_KEY to test with a license key
#
# For Apify deployment:
# 1. Set environment variables in Apify Actor settings
# 2. Required: APIFY_API_TOKEN
# 3. Optional: STRIPE_SECRET_KEY (if using Stripe validation)
# 4. ACTOR_ID and ACTOR_RUN_ID are auto-set by Apify