We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docdyhr/simplenote-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Simplenote MCP Server Environment Configuration
# === REQUIRED: Simplenote Authentication ===
SIMPLENOTE_EMAIL=your_email@example.com
SIMPLENOTE_PASSWORD=your_password
# === OPTIONAL: Server Configuration ===
# Enable offline mode for testing (disables rate limiting)
SIMPLENOTE_OFFLINE_MODE=false
# Cache synchronization interval in seconds (default: 120)
SYNC_INTERVAL_SECONDS=120
# Logging level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO
# === Security Configuration ===
# Session secret key for secure token generation (REQUIRED for production)
# Generate with: python -c "import secrets; print(secrets.token_hex(32))"
# SESSION_SECRET_KEY=your-secure-random-key-here
# === Development Configuration ===
# TSX cache directory (fixes permission issues)
TSX_CACHE_DIR=./.tsx-cache
# Node options for better memory management
NODE_OPTIONS=--max-old-space-size=4096
# === Testing Configuration ===
# Pytest options
PYTEST_ADDOPTS=--tb=short -v
# Test timeout in seconds
TEST_TIMEOUT=60
# === CI/CD Configuration ===
# GitHub token for CLI operations (optional)
# GITHUB_TOKEN=ghp_...
# Docker build cache
DOCKER_BUILDKIT=1
COMPOSE_DOCKER_CLI_BUILD=1