# =============================================================================
# Google Maps MCP Server - Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your values.
# -----------------------------------------------------------------------------
# Server Configuration
# -----------------------------------------------------------------------------
PORT=3000
NODE_ENV=development
# -----------------------------------------------------------------------------
# MCP Protocol
# -----------------------------------------------------------------------------
MCP_TITLE="Google Maps"
MCP_VERSION=1.0.0
MCP_PROTOCOL_VERSION=2025-06-18
# -----------------------------------------------------------------------------
# Authentication
# -----------------------------------------------------------------------------
# Require Bearer token for clients to access this MCP server
AUTH_ENABLED=true
AUTH_STRATEGY=bearer
# Generate with: openssl rand -hex 32
# This token protects access to your MCP server
BEARER_TOKEN=your-random-auth-token-here
# -----------------------------------------------------------------------------
# Google Maps API
# -----------------------------------------------------------------------------
# Your Google Maps Platform API key
# Get from: https://console.cloud.google.com/apis/credentials
# Enable: "Places API (New)" and "Routes API"
API_KEY=your-google-maps-api-key-here
# -----------------------------------------------------------------------------
# Storage & Logging
# -----------------------------------------------------------------------------
RS_TOKENS_FILE=.data/tokens.json
LOG_LEVEL=info