- Core architecture from zen-mcp-server - OpenRouter and Gemini provider configuration - Content variant generator tool (first marketing tool) - Chat tool for marketing strategy - Version and model listing tools - Configuration system with .env support - Logging infrastructure - Ready for Claude Desktop integration
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
# Zen-Marketing MCP Server Configuration
|
|
|
|
# API Keys
|
|
# Required: At least one API key must be configured
|
|
OPENROUTER_API_KEY=your-openrouter-api-key-here
|
|
GEMINI_API_KEY=your-gemini-api-key-here
|
|
|
|
# Model Configuration
|
|
# DEFAULT_MODEL: Primary model for analytical and strategic work
|
|
# Options: google/gemini-2.5-pro-latest, minimax/minimax-m2, or any OpenRouter model
|
|
DEFAULT_MODEL=google/gemini-2.5-pro-latest
|
|
|
|
# FAST_MODEL: Model for quick generation (subject lines, variations)
|
|
FAST_MODEL=google/gemini-2.5-flash-preview-09-2025
|
|
|
|
# CREATIVE_MODEL: Model for creative content generation
|
|
CREATIVE_MODEL=minimax/minimax-m2
|
|
|
|
# Web Search
|
|
# Enable web search for fact-checking and current information
|
|
ENABLE_WEB_SEARCH=true
|
|
|
|
# Tool Configuration
|
|
# Comma-separated list of tools to disable
|
|
# Available tools: contentvariant, platformadapt, subjectlines, styleguide,
|
|
# seooptimize, guestedit, linkstrategy, factcheck,
|
|
# voiceanalysis, campaignmap, chat, thinkdeep, planner
|
|
DISABLED_TOOLS=
|
|
|
|
# Logging
|
|
# Options: DEBUG, INFO, WARNING, ERROR
|
|
LOG_LEVEL=INFO
|
|
|
|
# Language/Locale
|
|
# Leave empty for English, or specify locale (e.g., fr-FR, es-ES, de-DE)
|
|
LOCALE=
|
|
|
|
# Thinking Mode for Deep Analysis
|
|
# Options: minimal, low, medium, high, max
|
|
DEFAULT_THINKING_MODE_THINKDEEP=high
|